Esempio n. 1
0
            public CONFIGRow AddCONFIGRow(string ADMIN_ID, string ADMIN_PASS, string DEPT_NOMBRE)
            {
                CONFIGRow rowCONFIGRow = ((CONFIGRow)(this.NewRow()));

                rowCONFIGRow.ItemArray = new object[] {
                    ADMIN_ID,
                    ADMIN_PASS,
                    DEPT_NOMBRE
                };
                this.Rows.Add(rowCONFIGRow);
                return(rowCONFIGRow);
            }
Esempio n. 2
0
 public CONFIGRowChangeEvent(CONFIGRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public CONFIGRowChangeEvent(CONFIGRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 4
0
 public void RemoveCONFIGRow(CONFIGRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 5
0
 public void AddCONFIGRow(CONFIGRow row)
 {
     this.Rows.Add(row);
 }