コード例 #1
0
 public ContaCorrenteService(IContaCorrenteRepository repository,
                             INotificationHandler <DomainNotification> notificationHandler,
                             ICoafApiService coafApiService,
                             IValidator <Movimentacao> validator)
     : base(repository, notificationHandler)
 {
     this.coafApiService = coafApiService;
     this.validator      = validator;
 }
コード例 #2
0
 public MovimentacaoService(IMovimentacaoRepository movimentacaoRepository,
                            IContaCorrenteRepository contaCorrente,
                            ICoafApiService coafApiService,
                            INotificationHandler <DomainNotification> notificationHandler)
     : base(movimentacaoRepository, notificationHandler)
 {
     this.contaCorrenteRepository = contaCorrente;
     this.coafApiService          = coafApiService;
 }