public async Task <ActionResult <IEnumerable <Produit> > > GetAllProduits() { List <Produit> produits = await produitDAO.GetAllProduits(); if (produits == null) { return(NotFound()); } return(Ok(mapper.Map <List <ProduitDTO> >(produits))); }