Exemplo n.º 1
0
        public void GetAllTest()
        {
            List <Categorie> TestListCategorie = Context.GetAll();

            foreach (Categorie TestCategorie in TestListCategorie)
            {
                if (TestCategorie == null)
                {
                    Assert.Fail();
                }
            }
            Assert.IsNotNull(TestListCategorie);
        }
Exemplo n.º 2
0
        public async Task <IActionResult> Index()
        {
            List <Categorie> categorieLijst = await context.GetAll();

            return(View(categorieLijst));
        }
Exemplo n.º 3
0
 public List <Categorie> GetAll()
 {
     return(context.GetAll());
 }
Exemplo n.º 4
0
 public async Task <List <Categorie> > Index()
 {
     return(await categorieContext.GetAll());
 }