Exemplo n.º 1
0
 public IActionResult Index()
 {
     if (HttpContext.Session.GetString("AdminId") != null)
     {
         return(View(_iCityManager.GetCityWithCountry()));
     }
     else
     {
         return(RedirectToAction("Index", "Home"));
     }
 }