public void RemovePersistentSubscribersRow(PersistentSubscribersRow row) {
     this.Rows.Remove(row);
 }
 public PersistentSubscribersRowChangeEvent(PersistentSubscribersRow row,System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddPersistentSubscribersRow(PersistentSubscribersRow row) {
     this.Rows.Add(row);
 }