public List <SaleObject> GetAllOutletsSalesReports(int?itemsPerPage, int?pageNumber, DateTime startDate, DateTime endDate)
 {
     return(_reportRepository.GetAllOutletsSalesReports(itemsPerPage, pageNumber, startDate, endDate));
 }