public void AddAgentPaymentRow(AgentPaymentRow row) {
     this.Rows.Add(row);
 }
 public void RemoveAgentPaymentRow(AgentPaymentRow row) {
     this.Rows.Remove(row);
 }
 public AgentPaymentRowChangeEvent(AgentPaymentRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }