예제 #1
0
            public EmployeePayRow AddEmployeePayRow(string EmployeePayID, int EmployeeTblID, string EmployeeID, System.DateTime StartDate, decimal Amount)
            {
                EmployeePayRow rowEmployeePayRow = ((EmployeePayRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    EmployeePayID,
                    EmployeeTblID,
                    EmployeeID,
                    StartDate,
                    Amount
                };
                rowEmployeePayRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowEmployeePayRow);
                return(rowEmployeePayRow);
            }
예제 #2
0
 public EmployeePayRowChangeEvent(EmployeePayRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveEmployeePayRow(EmployeePayRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddEmployeePayRow(EmployeePayRow row)
 {
     this.Rows.Add(row);
 }