예제 #1
0
 public abstract void DeleteEmployeesHistory(EmployeesHistoryInfo objEmployeesHistory);
예제 #2
0
 public abstract void UpdateEmployeesHistory(EmployeesHistoryInfo objEmployeesHistory);
예제 #3
0
 public abstract void AddEmployeesHistory(EmployeesHistoryInfo objEmployeesHistory);
예제 #4
0
 public void UpdateEmployeesHistory(EmployeesHistoryInfo objEmployeesHistory)
 {
     DataProvider.Instance().UpdateEmployeesHistory(objEmployeesHistory);
 }
예제 #5
0
 public void AddEmployeesHistory(EmployeesHistoryInfo objEmployeesHistory)
 {
     DataProvider.Instance().AddEmployeesHistory(objEmployeesHistory);
 }
예제 #6
0
 public override void UpdateEmployeesHistory(EmployeesHistoryInfo objEmployeesHistory)
 {
     SqlHelper.ExecuteNonQuery(ConnectionString, GetFullyQualifiedName("HRM_EmployeesHistory"), objEmployeesHistory.id, objEmployeesHistory.fromdate, objEmployeesHistory.todate, objEmployeesHistory.content, objEmployeesHistory.employeeid, 1);
 }