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