public List <Price> GetAll()
 {
     return(_priceDAL.GetAll().ToList());
 }
예제 #2
0
 public List <PriceList> GetAll(Expression <Func <PriceList, bool> > filter)
 {
     return(_context.GetAll(filter));
 }