Esempio n. 1
0
 public void UpdateEmployeeContract(EmployeeContractInfo objEmployeeContract)
 {
     DataProvider.Instance().UpdateEmployeeContract(objEmployeeContract);
 }
Esempio n. 2
0
 public void AddEmployeeContract(EmployeeContractInfo objEmployeeContract)
 {
     DataProvider.Instance().AddEmployeeContract(objEmployeeContract);
 }
Esempio n. 3
0
 public abstract void DeleteEmployeeContract(EmployeeContractInfo objEmployeeContract);
Esempio n. 4
0
 public abstract void UpdateEmployeeContract(EmployeeContractInfo objEmployeeContract);
Esempio n. 5
0
 public abstract void AddEmployeeContract(EmployeeContractInfo objEmployeeContract);
Esempio n. 6
0
 public override void DeleteEmployeeContract(EmployeeContractInfo objEmployeeContract)
 {
     SqlHelper.ExecuteNonQuery(ConnectionString, GetFullyQualifiedName("HRM_EmployeeContract"), objEmployeeContract.id, objEmployeeContract.employeeid, objEmployeeContract.contractnum, objEmployeeContract.represent, objEmployeeContract.representunit, objEmployeeContract.representphone, objEmployeeContract.representaddress, objEmployeeContract.datestart, objEmployeeContract.dateend, objEmployeeContract.contracttype, 2);
 }