public void UpdateLoanReminder(LoanReminder r) { StoredProcUpdate("spLoanReminderUpdate", _P("intLoanReminderID", r.LoanReminderID), _P("intLoanID", r.LoanID), _P("dtDate", r.Date), _P("bitClosed", r.Closed), _P("txtDescription", r.Description) ); }
public int InsertLoanReminder(LoanReminder r) { var retval = ReturnParam("NewLoanReminderID"); StoredProcUpdate("spLoanReminderInsert", _P("intLoanID", r.LoanID), _P("dtDate", r.Date), _P("bitClosed", r.Closed), _P("txtDescription", r.Description), retval ); return (int)retval.Value; }