public ServicesRowChangeEvent(ServicesRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddServicesRow(ServicesRow row) {
     this.Rows.Add(row);
 }
 public void RemoveServicesRow(ServicesRow row) {
     this.Rows.Remove(row);
 }
 public ServiceSettingsRow AddServiceSettingsRow(ServicesRow parentServicesRowByServices_ServicesSettings, string Value) {
     ServiceSettingsRow rowServiceSettingsRow = ((ServiceSettingsRow)(this.NewRow()));
     rowServiceSettingsRow.ItemArray = new object[] {
             parentServicesRowByServices_ServicesSettings[0],
             Value};
     this.Rows.Add(rowServiceSettingsRow);
     return rowServiceSettingsRow;
 }