public ActionResult RedigerBruker(EndreKunde innKunde)
 {
     if (ModelState.IsValid)
     {
         if (_adminBLL.RedigerKunde(innKunde))
         {
             ViewBag.EndreStatus = "Informasjon oppdatert";
         }
         else
         {
             ViewBag.EndreStatus = "Klarte ikke å oppdatere informasjon";
         }
     }
     return(View(_adminBLL.HentKunde(innKunde.id)));
 }