public void AddLoanDetailsRow(LoanDetailsRow row) {
     this.Rows.Add(row);
 }
 public void RemoveLoanDetailsRow(LoanDetailsRow row) {
     this.Rows.Remove(row);
 }
 public LoanDetailsRowChangeEvent(LoanDetailsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }