public void AddWinkelTest()
        {
            Winkel winkel = new Winkel("testWinkel");

            Repo.AddWinkel(winkel);
            Assert.IsTrue(Repo.GetWinkels().Contains <Winkel>(winkel));
        }
Exemple #2
0
 public ActionResult getWinkels()
 {
     return(Json(Repo.GetWinkels()));
 }