public CardListRow AddCardListRow(CollectionRow parentCollectionRowByCollection_CardList, string Name, System.DateTime DateCreated, System.DateTime LastModified) {
     CardListRow rowCardListRow = ((CardListRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null,
             Name,
             DateCreated,
             LastModified};
     if ((parentCollectionRowByCollection_CardList != null)) {
         columnValuesArray[1] = parentCollectionRowByCollection_CardList[0];
     }
     rowCardListRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowCardListRow);
     return rowCardListRow;
 }
 public CollectionRowChangeEvent(CollectionRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddCollectionRow(CollectionRow row) {
     this.Rows.Add(row);
 }
 public void RemoveCollectionRow(CollectionRow row) {
     this.Rows.Remove(row);
 }
 public CollectionRowChangeEvent(CollectionRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }