public IEnumerable <ProductDTO> GetAll() { IEnumerable <Product> products = serviceProduct.GetAll(); IEnumerable <ProductDTO> productDto = mapper.MapperListProduct(products); return(productDto); }