示例#1
0
 // GET: /Account/Logout
 public ActionResult Logout(string returnUrl)
 {
     _sessionManagement.LogOut();
     return(RedirectToAction("Index", "Home"));
 }
示例#2
0
 public ActionResult LogOut()
 {
     _sessionManagementRepository.LogOut();
     return(RedirectToAction("Index", "Home"));
 }