public async Task <IEnumerable <ProductOrderModel> > GetProductOrders(SearchProductOrders searchProductOrders)
 {
     return(await _productOrderRepository.GetProductOrders(searchProductOrders));
 }
示例#2
0
 public List <ProductOrder> GetProductOrders()
 {
     return(_repo.GetProductOrders());
 }