public void AddServiceRequestsRow(ServiceRequestsRow row) {
     this.Rows.Add(row);
 }
 public void RemoveServiceRequestsRow(ServiceRequestsRow row) {
     this.Rows.Remove(row);
 }
 public ServiceRequestsRowChangeEvent(ServiceRequestsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }