public NotificationModeData.NotificationModesRow AddNotificationModesRow(int NotificationModeID, string Description)
 {
     NotificationModeData.NotificationModesRow row = (NotificationModeData.NotificationModesRow)base.NewRow();
     row.ItemArray = new object[] { NotificationModeID, Description };
     base.Rows.Add(row);
     return(row);
 }
 public NotificationModesRowChangeEvent(NotificationModeData.NotificationModesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveNotificationModesRow(NotificationModeData.NotificationModesRow row)
 {
     base.Rows.Remove(row);
 }
 public void AddNotificationModesRow(NotificationModeData.NotificationModesRow row)
 {
     base.Rows.Add(row);
 }
 public NotificationModesRowChangeEvent(NotificationModeData.NotificationModesRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }