public void GetAllTest() { List <Bestelling> TestListBestelling = Context.GetAll(); foreach (Bestelling TestBestelling in TestListBestelling) { if (TestBestelling == null) { Assert.Fail(); } } Assert.IsNotNull(TestListBestelling); }
public List <Bestelling> GetAll() { return(context.GetAll()); }
public ObservableCollection <Bestelling> GetAll() { return(bestellingContext.GetAll()); }