public GetAllProductImagesQueryHandler(IProductImageRepositoryAsync productImageRepository, IMapper mapper)
 {
     _productImageRepository = productImageRepository;
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public UploadProductImageCommandHandler(IProductRepositoryAsync productRepository, IProductImageRepositoryAsync productImageRepository, IMapper mapper)
 {
     _productRepository      = productRepository;
     _productImageRepository = productImageRepository;
     _mapper = mapper;
 }
Exemplo n.º 3
0
 public GetProductByIdQueryHandler(IProductRepositoryAsync productRepository, IProductImageRepositoryAsync productImageRepository, IMapper mapper)
 {
     _productRepository      = productRepository;
     _productImageRepository = productImageRepository;
     _mapper = mapper;
 }