Пример #1
0
            public TimesheetManagersRow AddTimesheetManagersRow(System.Guid RES_UID, string RES_NAME, bool RES_IS_ACTIVE)
            {
                TimesheetManagersRow rowTimesheetManagersRow = ((TimesheetManagersRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    RES_UID,
                    RES_NAME,
                    RES_IS_ACTIVE
                };
                rowTimesheetManagersRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowTimesheetManagersRow);
                return(rowTimesheetManagersRow);
            }
Пример #2
0
 public TimesheetManagersRowChangeEvent(TimesheetManagersRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveTimesheetManagersRow(TimesheetManagersRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddTimesheetManagersRow(TimesheetManagersRow row)
 {
     this.Rows.Add(row);
 }