public bool Delete(Price model) { return(_priceDAL.Delete(model) > 0); }
public void Detele(int id) { _context.Delete(new PriceList { Id = id }); }