public ActionResult EndreForfatter(int id, Forfatteren endreForfatter)
 {
     if (ModelState.IsValid)
     {
         bool endringOK = _adminBLL.endreForfatter(id, endreForfatter);
         if (endringOK)
         {
             return(RedirectToAction("hentForfattere"));
         }
     }
     return(View());
 }