Example #1
0
 public AddAuctionImageCommandHandler(
     ILogger <AddAuctionImageCommandHandler> logger,
     AuctionImageService auctionImageService) : base(logger)
 {
     _logger = logger;
     _auctionImageService = auctionImageService;
 }
Example #2
0
 public UserReplaceAuctionImageCommandHandler(AuctionImageService auctionImageService,
                                              IAuctionRepository auctionRepository, EventBusService eventBusService,
                                              ILogger <UserReplaceAuctionImageCommandHandler> logger) : base(logger)
 {
     _auctionImageService = auctionImageService;
     _auctionRepository   = auctionRepository;
     _eventBusService     = eventBusService;
     _logger = logger;
 }