public void AddWinkelTest() { Winkel winkel = new Winkel("testWinkel"); Repo.AddWinkel(winkel); Assert.IsTrue(Repo.GetWinkels().Contains <Winkel>(winkel)); }
public ActionResult getWinkels() { return(Json(Repo.GetWinkels())); }