コード例 #1
0
 public List<JobIndustryAreaModel> GetJobIndustryAreaWithJobPost()
 {
     DataTable jobIndustryArea = _jobPostProcessor.GetJobIndustryAreaWithJobPost();
     List<JobIndustryAreaModel> lstJobIndustryArea = new List<JobIndustryAreaModel>();
     if (jobIndustryArea.Rows.Count > 0)
     {
         lstJobIndustryArea = ConvertDatatableToModelList.ConvertDataTable<JobIndustryAreaModel>(jobIndustryArea);
     }
     return lstJobIndustryArea;
 }