public bool Update(Price model)
 {
     return(_priceDAL.Update(model) > 0);
 }
 public void Update(PriceList data)
 {
     _context.Update(data);
 }