Esempio n. 1
0
            public customprocedureRow AddcustomprocedureRow(string officialname, string customname, string lu, System.DateTime lt)
            {
                customprocedureRow rowcustomprocedureRow = ((customprocedureRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    officialname,
                    customname,
                    lu,
                    lt
                };
                rowcustomprocedureRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowcustomprocedureRow);
                return(rowcustomprocedureRow);
            }
Esempio n. 2
0
 public customprocedureRowChangeEvent(customprocedureRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemovecustomprocedureRow(customprocedureRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddcustomprocedureRow(customprocedureRow row)
 {
     this.Rows.Add(row);
 }