Exemplo n.º 1
0
 public List <Stock> GetStockReport(int?categoryId, int?productId, DateTime startDate, DateTime endDate)
 {
     return(_sharedRepository.GetStockReport(categoryId, productId, startDate, endDate));
 }
Exemplo n.º 2
0
 public List <Stock> GetStockReport(string startDate, string endDate)
 {
     return(_sharedRepository.GetStockReport(startDate, endDate));
 }