Ejemplo n.º 1
0
 public CreateAccountReservationCommandHandler(IAccountReservationService accountReservationService,
                                               IValidator <CreateAccountReservationCommand> validator, IGlobalRulesService globalRulesService,
                                               IUnitOfWorkContext context, IAccountLegalEntitiesService accountLegalEntitiesService)
 {
     _accountReservationService = accountReservationService;
     _validator                   = validator;
     _globalRulesService          = globalRulesService;
     _context                     = context;
     _accountLegalEntitiesService = accountLegalEntitiesService;
 }
 public GetRulesQueryHandler(IRulesService rulesService, IGlobalRulesService globalRulesService)
 {
     _rulesService       = rulesService;
     _globalRulesService = globalRulesService;
 }
Ejemplo n.º 3
0
 public GetAccountRulesQueryHandler(IGlobalRulesService globalRulesService, IValidator <GetAccountRulesQuery> validator)
 {
     _globalRulesService = globalRulesService;
     _validator          = validator;
 }