public NonceRow AddNonceRow(string Code, System.DateTime Expires)
            {
                NonceRow rowNonceRow = ((NonceRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Code,
                    Expires
                };
                rowNonceRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowNonceRow);
                return(rowNonceRow);
            }
 public void RemoveNonceRow(NonceRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddNonceRow(NonceRow row)
 {
     this.Rows.Add(row);
 }
 public NonceRowChangeEvent(NonceRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public NonceRowChangeEvent(NonceRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveNonceRow(NonceRow row) {
     this.Rows.Remove(row);
 }
 public void AddNonceRow(NonceRow row) {
     this.Rows.Add(row);
 }