public void AddAllCommentsRow(AllCommentsRow row)
 {
     this.Rows.Add(row);
 }
 public void RemoveAllCommentsRow(AllCommentsRow row)
 {
     this.Rows.Remove(row);
 }
 public AllCommentsRowChangeEvent(AllCommentsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }