public List<JobIndustryAreaModel> GetJobIndustryAreaWithStudentData()
 {
     DataTable jobIndustryArea = _jobPostProcessor.GetJobIndustryAreaWithStudentData();
     if (jobIndustryArea.Rows.Count > 0)
     {
         List<JobIndustryAreaModel> lstJobIndustryArea = new List<JobIndustryAreaModel>();
         lstJobIndustryArea = ConvertDatatableToModelList.ConvertDataTable<JobIndustryAreaModel>(jobIndustryArea);
         return lstJobIndustryArea;
     }
     throw new DataNotFound("Data not found");
 }