public MyCommandHandler(IAggregateOf <MyAggregate> aggregateOf)
 {
     _aggregateOf = aggregateOf;
 }
Ejemplo n.º 2
0
 public DebitAccountsCommandHandlers(IAggregateOf <DebitAccounts> debitAccounts)
 {
     _debitAccounts = debitAccounts;
 }
Ejemplo n.º 3
0
 public ItemHandler(
     IAggregateOf <TodoList> aggregateSource
     )
 {
     _aggregateSource = aggregateSource;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MyCommandHandler"/> class.
 /// </summary>
 /// <param name="myAggregateRoot">imagine .</param>h
 public MyCommandHandler(IAggregateOf <MyAggregateRoot> myAggregateRoot)
 {
     _myAggregateRoot = myAggregateRoot;
 }
Ejemplo n.º 5
0
 public DebitAccountCommandHandlers(IAggregateOf <DebitAccount> account)
 {
     _account = account;
 }