예제 #1
0
 public CreateProductHandler(
     IBrowseProductRepository productRepository,
     IBusPublisher busPublisher,
     IMapper mapper,
     IValidate <Product> validator,
     IValidateContext ctx) : base(busPublisher, mapper, productRepository, validator, ctx)
 {
 }
예제 #2
0
 public GetProductHandler(IBrowseProductRepository productsRepository, IMapper mapper)
 {
     _productsRepository = productsRepository;
     _mapper             = mapper;
 }