public ActionResult EndreFlyplass(int id, Flyplasser endreFlyplass)
        {
            bool endringOK = _adminBLL.endreFlyplass(id, endreFlyplass);

            if (endringOK)
            {
                return(RedirectToAction("ListeFlyplasser"));
            }
            return(View());
        }