Merge branch 'CourseworkRestAPI' into CourseworkEmployeeApp

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

View File

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