public List <Employee> GetEmployeeListByOfficeandDepartment(int DepartmentID) { return(EmployeeIntegration.GetCompanyEmployeeListByOfficeandDepartment(DepartmentID)); }
public List <Employee> GetOfficeEmployeeList() { return(EmployeeIntegration.GetOfficeEmployeeList()); }
public List <Employee> GetEmployeesAllByCompany(int CompanyID = -1) { return(EmployeeIntegration.GetEmployeesAllByCompany(CompanyID)); }
public List <Employee> GetEmployeesListByOfficeID() { return(EmployeeIntegration.GetEmployeesListByOfficeID()); }
public List <Employee> GetDuplicateEmployeeList(string employeeName, string fatherName, string dateofBirth, bool allOffices = false, bool showDeleted = false) { return(EmployeeIntegration.GetDuplicateEmployeeList(employeeName, fatherName, dateofBirth, allOffices, showDeleted)); }
public int UpdateEmployeeContactInfo(Employee theEmployee) { return(EmployeeIntegration.UpdateEmployeeContactInfo(theEmployee)); }
public int DeleteEmployee(Employee theEmployee) { return(EmployeeIntegration.DeleteEmployee(theEmployee)); }
public int InsertEmployee(Employee theEmployee) { return(EmployeeIntegration.InsertEmployee(theEmployee)); }
public int UpdateEmployee(Employee theEmployee) { return(EmployeeIntegration.UpdateEmployee(theEmployee)); }
public List <Employee> GetEmployeesListbyofficeid(int OfficeID) { return(EmployeeIntegration.GetEmployeesListbyofficeid(OfficeID)); }
public List <Employee> GetCompanyEmployeeList() { return(EmployeeIntegration.GetCompanyEmployeeList()); }
public List <Employee> GetEmployeeDetailsByFieldFoce(string OfficeIDs, string DateFrom, string DateTo, string ApprovalStatus) { return(EmployeeIntegration.GetEmployeeDetailsByFieldForce(OfficeIDs, DateFrom, DateTo, ApprovalStatus)); }
public List <Employee> GetEmployeeDetailsByGuarantorLoan(string OfficeIDs, string DateFrom, string DateTo, string ApprovalStatus) { return(EmployeeIntegration.GetEmployeeDetailsByGuarantorLoan(OfficeIDs, DateFrom, DateTo, ApprovalStatus)); }
public List <Employee> GetReportingEmployeesAllByEmployee(int EmployeeID) { return(EmployeeIntegration.GetReportingEmployeesAllByEmployee(EmployeeID)); }
public Employee GetEmployeeByEmployeeCode(string employeeCode) { return(EmployeeIntegration.GetEmployeeByEmployeeCode(employeeCode)); }
public Employee GetEmployeeByID(int EmployeeID) { return(EmployeeIntegration.GetEmployeeDetailsByID(EmployeeID)); }