public void UpdateSupplier(R_Supplier t) { //Requires.NotNull(t); //Requires.PropertyNotNegative(t, "SupplierId"); t.Update(); }
public void DeleteSupplier(R_Supplier t) { t.IsDeleted = true; t.Update(); }