public List <Stock> GetStockReport(int?categoryId, int?productId, DateTime startDate, DateTime endDate)
 {
     return(_sharedRepository.GetStockReport(categoryId, productId, startDate, endDate));
 }
示例#2
0
 public List <Stock> GetStockReport(string startDate, string endDate)
 {
     return(_sharedRepository.GetStockReport(startDate, endDate));
 }