public CreateOfferAuctionCommand(IOfferAuctionManager auctionManager, IMapper mapper, INotifier notifier, IHubManager <NotifierHub> hubManager)
 {
     this.auctionManager = auctionManager;
     this.mapper         = mapper;
     this.notifier       = notifier;
     this.hubManager     = hubManager;
 }
Esempio n. 2
0
 public DenyOfferAuctionCommand(IOfferAuctionManager auctionManager, IReadOnlyOfferService offerService, IMapper mapper, INotifier notifier,
                                IHubManager <NotifierHub> hubManager)
 {
     this.auctionManager = auctionManager;
     this.offerService   = offerService;
     this.mapper         = mapper;
     this.notifier       = notifier;
     this.hubManager     = hubManager;
 }