예제 #1
0
 public int UpdateEmployeeProfile(EmployeeProfile theEmployeeProfile)
 {
     return(EmployeeProfileIntegration.UpdateEmployeeProfile(theEmployeeProfile));
 }
예제 #2
0
 public int DeleteEmployeeProfile(EmployeeProfile theEmployeeProfile)
 {
     return(EmployeeProfileIntegration.DeleteEmployeeProfile(theEmployeeProfile));
 }
예제 #3
0
 public int InsertEmployeeProfile(EmployeeProfile theEmployeeProfile)
 {
     return(EmployeeProfileIntegration.InsertEmployeeProfile(theEmployeeProfile));
 }
예제 #4
0
 public EmployeeProfile GetEmployeeProfileBySettingKeyID(int employeeID, int settingKeyID)
 {
     return(EmployeeProfileIntegration.GetEmployeeProfileBySettingKeyID(employeeID, settingKeyID));
 }
예제 #5
0
 public List <EmployeeProfile> GetEmployeeProfileByEmployeeID(int employeeID)
 {
     return(EmployeeProfileIntegration.GetEmployeeProfileByEmployeeID(employeeID));
 }
예제 #6
0
 public EmployeeProfile GetEmployeeProfileByID(int employeeProfileID)
 {
     return(EmployeeProfileIntegration.GetEmployeeProfileByID(employeeProfileID));
 }
예제 #7
0
 public List <EmployeeProfile> GetEmployeeProfilesList()
 {
     return(EmployeeProfileIntegration.GetEmployeeProfilesList());
 }