Exemplo n.º 1
0
 public CreateVoucherCommandHandler(
     IAccountDBContext accountDBContext,
     IVoucherValidations voucherValidations)
 {
     this.accountDBContext   = accountDBContext;
     this.voucherValidations = voucherValidations;
 }
 public GetVouchersHandler(
   IAccountDBContext accountDBContext
   )
 {
   this.accountDBContext = accountDBContext;
 }
 public DeleteVoucherCommandHandler(IAccountDBContext accountDBContext)
 {
     this.accountDBContext = accountDBContext;
 }