public ActionResult Authenticate(UserModel model)
 {
     Session["Status"] = "LoggedIn";
     using (var client = new AESDataService.DataServiceClient())
     {
         //make some call to get permission level
         //method doesnt exist yet....
         Session["Permission"] =  client.authenticateManager(model.userName, model.password);
     }
     return RedirectToAction("Index","Dashboard");
 }