public ReplayRow AddReplayRow(int CategoryID, string Name, System.Byte[] HashCode, string Filename, System.DateTime DateAdded, System.DateTime DateModified)
            {
                ReplayRow rowReplayRow = ((ReplayRow)(this.NewRow()));

                rowReplayRow.ItemArray = new object[] {
                    null,
                    CategoryID,
                    Name,
                    HashCode,
                    Filename,
                    DateAdded,
                    DateModified
                };
                this.Rows.Add(rowReplayRow);
                return(rowReplayRow);
            }
 public ReplayRowChangeEvent(ReplayRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveReplayRow(ReplayRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddReplayRow(ReplayRow row)
 {
     this.Rows.Add(row);
 }
 public ReplayRowChangeEvent(ReplayRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveReplayRow(ReplayRow row) {
     this.Rows.Remove(row);
 }
 public void AddReplayRow(ReplayRow row) {
     this.Rows.Add(row);
 }