public void UpdateExpense(R_Expense t) { //Requires.NotNull(t); //Requires.PropertyNotNegative(t, "ExpenseId"); t.Update(); }
public void DeleteExpense(R_Expense t) { t.IsDeleted = true; t.Update(); }