public ActionResult Logout()
 {
     CurrentSession.Clear();
     CurrentSession.Abandon();
     return(RedirectToAction(nameof(Index)));
 }