New methods.

This commit is contained in:
Yuee Shiness 2023-05-19 17:00:31 +04:00
parent 884a3692c9
commit 5f7994beaa

View File

@ -501,6 +501,12 @@ namespace ComputerStoreRestAPI.Controllers
throw;
}
}
#endregion
#endregion
[HttpGet]
public List<ReportConsignmentsViewModel> GetReportConsignments(ReportComponentsBindingModel model)
{
return _employeeReportLogic.GetConsignmentsByComponents(model);
}
}
}