public ActionResult Index()
 {
     if (!base.VerifyIsAuthenticated() || !base.VerifyIsAdmin())
     {
         return(base.RedirectHome());
     }
     return(View(service.List()));
 }