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

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

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

            return(View(lstReg));
        }