Example #1
0
 public void UpdateEmployeeContract(EmployeeContractInfo objEmployeeContract)
 {
     DataProvider.Instance().UpdateEmployeeContract(objEmployeeContract);
 }
Example #2
0
 public void AddEmployeeContract(EmployeeContractInfo objEmployeeContract)
 {
     DataProvider.Instance().AddEmployeeContract(objEmployeeContract);
 }
Example #3
0
 public abstract void DeleteEmployeeContract(EmployeeContractInfo objEmployeeContract);
Example #4
0
 public abstract void UpdateEmployeeContract(EmployeeContractInfo objEmployeeContract);
Example #5
0
 public abstract void AddEmployeeContract(EmployeeContractInfo objEmployeeContract);
Example #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);
 }