public void Add(MealVendor mealVendor) { context.MealVendor.Add(mealVendor); }
public void Update(MealVendor mealVendor) { context.MealVendor.Attach(mealVendor); this.context.Entry(mealVendor).State = EntityState.Modified; }
public void Remove(MealVendor mealVendor) { context.Remove(mealVendor); }