Example #1
0
            public EmplCurrentRow AddEmplCurrentRow(int MID, string MCODE, string FIO, string MDEPARTMENT, string MGROUP, System.DateTime INOUTDATETIME, string DUR)
            {
                EmplCurrentRow rowEmplCurrentRow = ((EmplCurrentRow)(this.NewRow()));

                rowEmplCurrentRow.ItemArray = new object[] {
                    MID,
                    MCODE,
                    FIO,
                    MDEPARTMENT,
                    MGROUP,
                    INOUTDATETIME,
                    DUR
                };
                this.Rows.Add(rowEmplCurrentRow);
                return(rowEmplCurrentRow);
            }
Example #2
0
 public EmplCurrentRowChangeEvent(EmplCurrentRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveEmplCurrentRow(EmplCurrentRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddEmplCurrentRow(EmplCurrentRow row)
 {
     this.Rows.Add(row);
 }