Merge branch 'CourseworkRestAPI' into CourseworkEmployeeApp

This commit is contained in:
Yuee Shiness 2023-05-19 17:00:46 +04:00
commit 54dadbeb7e

View File

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