public ActionResult hentForfattere()
        {
            if (Session["AdminLoggetInn"] != null)
            {
                bool loggetInn = (bool)Session["AdminLoggetInn"];

                if (loggetInn)
                {
                    List <Forfatteren> alleForfattere = _adminBLL.hentForfattere();
                    return(View(alleForfattere));
                }
            }
            return(RedirectToAction("Index"));
        }