예제 #1
0
 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));
 }