Example #1
0
 public GetProductPartsQueryHandler(IProductPartRepo productPartRepo, IMapper mapper)
 {
     this.productPartRepo = productPartRepo;
     this.mapper          = mapper;
 }
Example #2
0
 public DeleteProductPartCommandHandler(IProductPartRepo productPartRepo)
 {
     this.productPartRepo = productPartRepo;
 }
Example #3
0
 public AddProductPartCommandHandler(IProductRepository productRepository, IProductPartRepo productPartRepo)
 {
     this.productRepository = productRepository;
     this.productPartRepo   = productPartRepo;
 }
Example #4
0
 public ProductionConfirmedConsumer(IProductPartRepo productPartRepo, ILogger <ProductionConfirmedConsumer> logger)
 {
     this.productPartRepo = productPartRepo;
     this.logger          = logger;
 }