Example #1
0
        public ActionResult setSession(string status = "new")
        {
            if (Session["_Locked"] != null)
            {
                using (AESDataService.DataServiceClient client = new AESDataService.DataServiceClient())
                {
                    client.unlockApp((int)Session["_Locked"]);
                }
            }
            Session["_Status"] = status;

            return(RedirectToAction("Applicant", "Application", -1));
        }
Example #2
0
        public ActionResult setSession(string status = "new")
        {
            if (Session["_Locked"] != null)
            {
                using (AESDataService.DataServiceClient client = new AESDataService.DataServiceClient())
                {
                    client.unlockApp((int)Session["_Locked"]);
                }
            }
            Session["_Status"] = status;

            return RedirectToAction("Applicant","Application",-1);
        }