Ejemplo n.º 1
0
 public List <Employee> GetEmployeeListByOfficeandDepartment(int DepartmentID)
 {
     return(EmployeeIntegration.GetCompanyEmployeeListByOfficeandDepartment(DepartmentID));
 }
Ejemplo n.º 2
0
 public List <Employee> GetOfficeEmployeeList()
 {
     return(EmployeeIntegration.GetOfficeEmployeeList());
 }
Ejemplo n.º 3
0
 public List <Employee> GetEmployeesAllByCompany(int CompanyID = -1)
 {
     return(EmployeeIntegration.GetEmployeesAllByCompany(CompanyID));
 }
Ejemplo n.º 4
0
 public List <Employee> GetEmployeesListByOfficeID()
 {
     return(EmployeeIntegration.GetEmployeesListByOfficeID());
 }
Ejemplo n.º 5
0
 public List <Employee> GetDuplicateEmployeeList(string employeeName, string fatherName, string dateofBirth, bool allOffices = false, bool showDeleted = false)
 {
     return(EmployeeIntegration.GetDuplicateEmployeeList(employeeName, fatherName, dateofBirth, allOffices, showDeleted));
 }
Ejemplo n.º 6
0
 public int UpdateEmployeeContactInfo(Employee theEmployee)
 {
     return(EmployeeIntegration.UpdateEmployeeContactInfo(theEmployee));
 }
Ejemplo n.º 7
0
 public int DeleteEmployee(Employee theEmployee)
 {
     return(EmployeeIntegration.DeleteEmployee(theEmployee));
 }
Ejemplo n.º 8
0
 public int InsertEmployee(Employee theEmployee)
 {
     return(EmployeeIntegration.InsertEmployee(theEmployee));
 }
Ejemplo n.º 9
0
 public int UpdateEmployee(Employee theEmployee)
 {
     return(EmployeeIntegration.UpdateEmployee(theEmployee));
 }
Ejemplo n.º 10
0
 public List <Employee> GetEmployeesListbyofficeid(int OfficeID)
 {
     return(EmployeeIntegration.GetEmployeesListbyofficeid(OfficeID));
 }
Ejemplo n.º 11
0
 public List <Employee> GetCompanyEmployeeList()
 {
     return(EmployeeIntegration.GetCompanyEmployeeList());
 }
Ejemplo n.º 12
0
 public List <Employee> GetEmployeeDetailsByFieldFoce(string OfficeIDs, string DateFrom, string DateTo, string ApprovalStatus)
 {
     return(EmployeeIntegration.GetEmployeeDetailsByFieldForce(OfficeIDs, DateFrom, DateTo, ApprovalStatus));
 }
Ejemplo n.º 13
0
 public List <Employee> GetEmployeeDetailsByGuarantorLoan(string OfficeIDs, string DateFrom, string DateTo, string ApprovalStatus)
 {
     return(EmployeeIntegration.GetEmployeeDetailsByGuarantorLoan(OfficeIDs, DateFrom, DateTo, ApprovalStatus));
 }
Ejemplo n.º 14
0
 public List <Employee> GetReportingEmployeesAllByEmployee(int EmployeeID)
 {
     return(EmployeeIntegration.GetReportingEmployeesAllByEmployee(EmployeeID));
 }
Ejemplo n.º 15
0
 public Employee GetEmployeeByEmployeeCode(string employeeCode)
 {
     return(EmployeeIntegration.GetEmployeeByEmployeeCode(employeeCode));
 }
Ejemplo n.º 16
0
 public Employee GetEmployeeByID(int EmployeeID)
 {
     return(EmployeeIntegration.GetEmployeeDetailsByID(EmployeeID));
 }