public ActionResult RegisteredApplicants()
        {
            DreamJobsBAL        DJBAL  = new DreamJobsBAL();
            List <Registration> lstReg = DJBAL.GetRegistrations("", "");

            return(View(lstReg));
        }
        public ActionResult RegisteredApplicants(string FromDate, string ToDate)
        {
            DreamJobsBAL        DJBAL  = new DreamJobsBAL();
            List <Registration> lstReg = DJBAL.GetRegistrations(FromDate, ToDate);

            return(View(lstReg));
        }
Beispiel #3
0
        public ActionResult AppliedJob()
        {
            DreamJobsBAL        DJBAL  = new DreamJobsBAL();
            List <Registration> lstReg = DJBAL.GetRegistrations("", "", User.Identity.Name);

            return(View(lstReg));
        }