예제 #1
0
 public List <Employee> GetEmployeeListByOfficeandDepartment(int DepartmentID)
 {
     return(EmployeeIntegration.GetCompanyEmployeeListByOfficeandDepartment(DepartmentID));
 }
예제 #2
0
 public List <Employee> GetOfficeEmployeeList()
 {
     return(EmployeeIntegration.GetOfficeEmployeeList());
 }
예제 #3
0
 public List <Employee> GetEmployeesAllByCompany(int CompanyID = -1)
 {
     return(EmployeeIntegration.GetEmployeesAllByCompany(CompanyID));
 }
예제 #4
0
 public List <Employee> GetEmployeesListByOfficeID()
 {
     return(EmployeeIntegration.GetEmployeesListByOfficeID());
 }
예제 #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));
 }
예제 #6
0
 public int UpdateEmployeeContactInfo(Employee theEmployee)
 {
     return(EmployeeIntegration.UpdateEmployeeContactInfo(theEmployee));
 }
예제 #7
0
 public int DeleteEmployee(Employee theEmployee)
 {
     return(EmployeeIntegration.DeleteEmployee(theEmployee));
 }
예제 #8
0
 public int InsertEmployee(Employee theEmployee)
 {
     return(EmployeeIntegration.InsertEmployee(theEmployee));
 }
예제 #9
0
 public int UpdateEmployee(Employee theEmployee)
 {
     return(EmployeeIntegration.UpdateEmployee(theEmployee));
 }
예제 #10
0
 public List <Employee> GetEmployeesListbyofficeid(int OfficeID)
 {
     return(EmployeeIntegration.GetEmployeesListbyofficeid(OfficeID));
 }
예제 #11
0
 public List <Employee> GetCompanyEmployeeList()
 {
     return(EmployeeIntegration.GetCompanyEmployeeList());
 }
예제 #12
0
 public List <Employee> GetEmployeeDetailsByFieldFoce(string OfficeIDs, string DateFrom, string DateTo, string ApprovalStatus)
 {
     return(EmployeeIntegration.GetEmployeeDetailsByFieldForce(OfficeIDs, DateFrom, DateTo, ApprovalStatus));
 }
예제 #13
0
 public List <Employee> GetEmployeeDetailsByGuarantorLoan(string OfficeIDs, string DateFrom, string DateTo, string ApprovalStatus)
 {
     return(EmployeeIntegration.GetEmployeeDetailsByGuarantorLoan(OfficeIDs, DateFrom, DateTo, ApprovalStatus));
 }
예제 #14
0
 public List <Employee> GetReportingEmployeesAllByEmployee(int EmployeeID)
 {
     return(EmployeeIntegration.GetReportingEmployeesAllByEmployee(EmployeeID));
 }
예제 #15
0
 public Employee GetEmployeeByEmployeeCode(string employeeCode)
 {
     return(EmployeeIntegration.GetEmployeeByEmployeeCode(employeeCode));
 }
예제 #16
0
 public Employee GetEmployeeByID(int EmployeeID)
 {
     return(EmployeeIntegration.GetEmployeeDetailsByID(EmployeeID));
 }