コード例 #1
0
ファイル: ProductAppService.cs プロジェクト: rafaeltj13/RDC
        public async Task <ICollection <ProductDTO> > GetAllAsync()
        {
            var result = await _productService.GetAllAsync();

            return(AutoMapper.Mapper.Map <ICollection <ProductDTO> >(result));
        }