コード例 #1
0
        public IEnumerable <ProductDto> GetAll()
        {
            var products = productService.GetAll();

            return(productMapper.MapperListProductDto(products));
        }