public IActionResult GeefGebruikerBeheerrechten(int gebruikerId) { try { Gebruiker gebruiker = gebruikerContext.GetById(gebruikerId); gebruiker.Functie = Functie.Beheerder; gebruikerContext.Update(gebruiker); return(RedirectToAction("GebruikerBeheer")); } catch (SqlException) { return(RedirectToAction("Error", "Errors")); } }
/// <summary> /// Ontvang een gebruiker op basis van zijn/haar id. /// </summary> /// <param name="id">Het id van de gebruiker.</param> /// <returns>Een gevuld gebruiker object. </returns> public Gebruiker GetById(int id) { return(context.GetById(id)); }