예제 #1
0
            public dbaccessRow AdddbaccessRow(dbuserRow parentdbuserRowBydbuserdbaccess, dbdepartmentRow parentdbdepartmentRowBydbdepartmentdbaccess, string alpha1, string lu, System.DateTime lt)
            {
                dbaccessRow rowdbaccessRow = ((dbaccessRow)(this.NewRow()));

                rowdbaccessRow.ItemArray = new object[] {
                    parentdbuserRowBydbuserdbaccess[0],
                    parentdbdepartmentRowBydbdepartmentdbaccess[0],
                    alpha1,
                    lu,
                    lt
                };
                this.Rows.Add(rowdbaccessRow);
                return(rowdbaccessRow);
            }
예제 #2
0
 public void RemovedbaccessRow(dbaccessRow row)
 {
     this.Rows.Remove(row);
 }
예제 #3
0
 public void AdddbaccessRow(dbaccessRow row)
 {
     this.Rows.Add(row);
 }
예제 #4
0
 public dbaccessRowChangeEvent(dbaccessRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }