コード例 #1
0
 public _AlterPickup(
     Location.Factory locationFactory,
     IInterAggregateEventBus interAggregateEventBus)
 {
     _locationFactory        = locationFactory;
     _interAggregateEventBus = interAggregateEventBus;
 }
コード例 #2
0
ファイル: BidAggregate.cs プロジェクト: EdVinyard/DddSandbox
 public _WithdrawNow(
     IDependencies deps,
     IInterAggregateEventBus bus)
 {
     _deps = deps;
     _bus  = bus;
 }
コード例 #3
0
 public _PlaceBid(
     IInterAggregateEventBus interAggregateEventBus,
     IClock clock,
     Bid.Bid.Factory bidFactory)
 {
     _interAggregateEventBus = interAggregateEventBus;
     _clock      = clock;
     _bidFactory = bidFactory;
 }
コード例 #4
0
 public Factory(
     Location.Factory locationFactory,
     ReverseAuction.Factory reverseAuctionFactory,
     Terms.Factory termsFactory,
     IInterAggregateEventBus interAggregateEventBus)
 {
     _locationFactory        = locationFactory;
     _reverseAuctionFactory  = reverseAuctionFactory;
     _termsFactory           = termsFactory;
     _interAggregateEventBus = interAggregateEventBus;
 }