Beispiel #1
0
            public ListSnapshotRow AddListSnapshotRow(int SnapshotID, string SnapShotName, string SnapshotNote, int RecordCount, string CreatedBy, string CreatedOn)
            {
                ListSnapshotRow rowListSnapshotRow = ((ListSnapshotRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    SnapshotID,
                    SnapShotName,
                    SnapshotNote,
                    RecordCount,
                    CreatedBy,
                    CreatedOn
                };
                rowListSnapshotRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListSnapshotRow);
                return(rowListSnapshotRow);
            }
Beispiel #2
0
 public ListSnapshotRowChangeEvent(ListSnapshotRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveListSnapshotRow(ListSnapshotRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddListSnapshotRow(ListSnapshotRow row)
 {
     this.Rows.Add(row);
 }