public Handler(IMediatorHandler mediator, IAccountPostingWrite db, IAccountRead read, IUnitOfWork uow)
 {
     this.mediator = mediator;
     this.db       = db;
     this.read     = read;
     this.uow      = uow;
 }
Example #2
0
 public Handler(IMediatorHandler mediator, IAccountPostingRead db, IAccountRead read)
 {
     this.mediator = mediator;
     this.db       = db;
     this.read     = read;
 }