Ejemplo n.º 1
0
        public void GetAllTest()
        {
            List <Bestelling> TestListBestelling = Context.GetAll();



            foreach (Bestelling TestBestelling in TestListBestelling)
            {
                if (TestBestelling == null)
                {
                    Assert.Fail();
                }
            }
            Assert.IsNotNull(TestListBestelling);
        }
Ejemplo n.º 2
0
 public List <Bestelling> GetAll()
 {
     return(context.GetAll());
 }
Ejemplo n.º 3
0
 public ObservableCollection <Bestelling> GetAll()
 {
     return(bestellingContext.GetAll());
 }