public void Create() { GebruikerSQLContext gsc = new GebruikerSQLContext(); GebruikerRepository gr = new GebruikerRepository(gsc); var user = gr.Retrieve("100"); }
public static Gebruiker Find(string key) { GebruikerSQLContext gsc = new GebruikerSQLContext(); GebruikerRepository gr = new GebruikerRepository(gsc); return(gr.Retrieve(key)); }
public void Retrieve() { GebruikerSQLContext gsc = new GebruikerSQLContext(); GebruikerRepository gr = new GebruikerRepository(gsc); var user = gr.Retrieve("2"); Assert.AreEqual(user.Email, "testemail"); }
public void Update() { GebruikerSQLContext gsc = new GebruikerSQLContext(); GebruikerRepository gr = new GebruikerRepository(gsc); Gebruiker user = gr.Retrieve("1"); user.Voornaam = "aangepast"; gr.Update(user); }