public ActionResult ApplicantHome()
        {
            ViewBag.userId = User.Identity.GetUserId();

            //Gets number of Applications by -
            //          -Getting ApplicantId by UserId
            //          --Use the ApplicantId to get count return as int
            ViewBag.NumberOfApplications =
                naaService.GetNumberOfApplicationsByApplicantId(naaService.GetApplicantIdByUserId(User.Identity.GetUserId()));
            return(View());
        }
        public ActionResult Applications()
        {
            int applicantId = naaService.GetApplicantIdByUserId(User.Identity.GetUserId());

            return(View(naaService.GetListOfApplicationsByApplicantId(applicantId)));
        }
        public ActionResult EditPersonalProfile()
        {
            ApplicantProfile profile = naaService.GetProfile(naaService.GetApplicantIdByUserId(User.Identity.GetUserId()));

            return(View(profile));
        }