public int UpdateEmployeeProfile(EmployeeProfile theEmployeeProfile) { return(EmployeeProfileIntegration.UpdateEmployeeProfile(theEmployeeProfile)); }
public int DeleteEmployeeProfile(EmployeeProfile theEmployeeProfile) { return(EmployeeProfileIntegration.DeleteEmployeeProfile(theEmployeeProfile)); }
public int InsertEmployeeProfile(EmployeeProfile theEmployeeProfile) { return(EmployeeProfileIntegration.InsertEmployeeProfile(theEmployeeProfile)); }
public EmployeeProfile GetEmployeeProfileBySettingKeyID(int employeeID, int settingKeyID) { return(EmployeeProfileIntegration.GetEmployeeProfileBySettingKeyID(employeeID, settingKeyID)); }
public List <EmployeeProfile> GetEmployeeProfileByEmployeeID(int employeeID) { return(EmployeeProfileIntegration.GetEmployeeProfileByEmployeeID(employeeID)); }
public EmployeeProfile GetEmployeeProfileByID(int employeeProfileID) { return(EmployeeProfileIntegration.GetEmployeeProfileByID(employeeProfileID)); }
public List <EmployeeProfile> GetEmployeeProfilesList() { return(EmployeeProfileIntegration.GetEmployeeProfilesList()); }