public void AddAgentInvoicesRow(AgentInvoicesRow row) {
     this.Rows.Add(row);
 }
 public void RemoveAgentInvoicesRow(AgentInvoicesRow row) {
     this.Rows.Remove(row);
 }
 public AgentInvoicesRowChangeEvent(AgentInvoicesRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }