39 lines
993 B
C#
Raw Normal View History

2023-04-14 22:57:48 +08:00
using ClassLibrary1;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WebMVCApi.Services;
namespace DIWebApi.Controllers
{
[Route("api/")]
[ApiController]
public class TestController : ControllerBase
{
private readonly CalculateService calculate;
public TestController(CalculateService calculate) {
this.calculate = calculate;
}
[HttpGet("Get")]
public int Get([FromServices] Class1 class1,int i1 ,int i2)
{
return class1.Add(i1,i2);
}
[HttpGet("GetCount")]
public int GetCount()
{
return calculate.Count;
}
2023-05-12 23:19:15 +08:00
/// <summary>
/// 写入文件
/// </summary>
/// <param name="Path">文件路径</param>
/// <param name="content">文件内容</param>
[HttpGet("build")]
public void buildCount()
{
System.IO.File.WriteAllText("", "");
}
2023-04-14 22:57:48 +08:00
}
}