コード例 #1
0
 public GetAllProductImagesQueryHandler(IProductImageRepositoryAsync productImageRepository, IMapper mapper)
 {
     _productImageRepository = productImageRepository;
     _mapper = mapper;
 }
コード例 #2
0
 public UploadProductImageCommandHandler(IProductRepositoryAsync productRepository, IProductImageRepositoryAsync productImageRepository, IMapper mapper)
 {
     _productRepository      = productRepository;
     _productImageRepository = productImageRepository;
     _mapper = mapper;
 }
コード例 #3
0
 public GetProductByIdQueryHandler(IProductRepositoryAsync productRepository, IProductImageRepositoryAsync productImageRepository, IMapper mapper)
 {
     _productRepository      = productRepository;
     _productImageRepository = productImageRepository;
     _mapper = mapper;
 }