Ejemplo n.º 1
0
 public CreateOfferAuctionCommand(IOfferAuctionManager auctionManager, IMapper mapper, INotifier notifier, IHubManager <NotifierHub> hubManager)
 {
     this.auctionManager = auctionManager;
     this.mapper         = mapper;
     this.notifier       = notifier;
     this.hubManager     = hubManager;
 }
Ejemplo 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;
 }