Exemplo n.º 1
0
 public _AlterPickup(
     Location.Factory locationFactory,
     IInterAggregateEventBus interAggregateEventBus)
 {
     _locationFactory        = locationFactory;
     _interAggregateEventBus = interAggregateEventBus;
 }
Exemplo n.º 2
0
 public _WithdrawNow(
     IDependencies deps,
     IInterAggregateEventBus bus)
 {
     _deps = deps;
     _bus  = bus;
 }
Exemplo n.º 3
0
 public _PlaceBid(
     IInterAggregateEventBus interAggregateEventBus,
     IClock clock,
     Bid.Bid.Factory bidFactory)
 {
     _interAggregateEventBus = interAggregateEventBus;
     _clock      = clock;
     _bidFactory = bidFactory;
 }
Exemplo n.º 4
0
 public Factory(
     Location.Factory locationFactory,
     ReverseAuction.Factory reverseAuctionFactory,
     Terms.Factory termsFactory,
     IInterAggregateEventBus interAggregateEventBus)
 {
     _locationFactory        = locationFactory;
     _reverseAuctionFactory  = reverseAuctionFactory;
     _termsFactory           = termsFactory;
     _interAggregateEventBus = interAggregateEventBus;
 }