コード例 #1
0
ファイル: ServiceMobile.cs プロジェクト: sadallo/UMNewProject
 public NewRecruiteeService.EducationDto selectEducationById(String EducationId)
 {
     EducationManager mgr = new EducationManager();
     NewRecruiteeService.EducationDto obj = new NewRecruiteeService.EducationDto();
     obj.EducationId = EducationId;
     return mgr.selectEducationById(obj);
 }
コード例 #2
0
ファイル: ServiceMobile.cs プロジェクト: sadallo/UMNewProject
 public List<NewRecruiteeService.EducationDto> selectAllEducation()
 {
     EducationManager mgr = new EducationManager();
     return mgr.selectAllEducation();
 }