This commit is contained in:
mmrbnjd
2024-05-31 00:24:45 +03:30
parent 579ccf78d6
commit 131330041c
13 changed files with 163 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
using Back.Services;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace Back.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class TaxPayerController : ControllerBase
{
private readonly servTaxPayer _servTaxPayer;
public TaxPayerController(servTaxPayer servTaxPayer)
{
_servTaxPayer = servTaxPayer;
}
}
}