This commit is contained in:
mmrbnjd
2025-01-22 13:55:20 +03:30
parent 88d4b63394
commit e40192c428
8 changed files with 2223 additions and 19 deletions

View File

@@ -13,6 +13,13 @@ namespace Back.Controllers.Warehouse
{
private readonly WarehouseService _warehouseService;
private readonly servUser _servUser;
public WarehouseController(WarehouseService warehouseService, servUser servUser)
{
_warehouseService = warehouseService;
_servUser = servUser;
}
[HttpGet("Circulation")]
public async Task<IActionResult> Circulation(string date = "", int CODID = 0, int PageIndex = 1, int PageSize = 5)
{