// GET: ApplicantEducation
        public ActionResult Index(Guid Id)
        {
            // var applicantEducations = db.ApplicantEducations.Where(a=>a.Applicant==Id).Include(a => a.ApplicantProfile);
            // return View(applicantEducations.ToList());
            IList <ApplicantEducationPoco> pocos = repo.GetList(a => a.Applicant == Id);

            return(View(repo.All()));
        }