public CotacaoCommandHandler(ICotacaoRepository cotacaoRepository,
                              IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainNotification> notifications, IUser user, ICalculoService calculoService)
     : base(uow, bus, notifications)
 {
     _cotacaoRepository = cotacaoRepository;
     _bus            = bus;
     _user           = user;
     _calculoService = calculoService;
 }
Example #2
0
 public GetCotacaoQueryHandler(ICotacaoRepository cotacaoRepository
                               , IMapper mapper
                               , IMediator mediator
                               )
 {
     _cotacaoRepository = cotacaoRepository;
     _mapper            = mapper;
     _mediator          = mediator;
 }
Example #3
0
 public DeleteCotacaoCommandHandler(ICotacaoRepository cotacaoRepository
                                    , IMapper mapper
                                    , IMediator mediator
                                    )
 {
     _cotacaoRepository = cotacaoRepository;
     _mapper            = mapper;
     _mediator          = mediator;
 }
 public PutCotacaoCommandHandler(ICotacaoRepository cotacaoRepository
                                 , IMapper mapper
                                 , IMediator mediator
                                 , IViaCepService viaCepService
                                 )
 {
     _cotacaoRepository = cotacaoRepository;
     _mapper            = mapper;
     _mediator          = mediator;
     _viaCepService     = viaCepService;
 }
Example #5
0
        public CotacaoService(ICotacaoRepository cotacaoRepository) : base(cotacaoRepository)

        {
            _cotacaoRepository = cotacaoRepository;
        }
 public ContratoApplication(ICotacaoRepository cotacaoRepository)
 {
     _cotacaoRepository = cotacaoRepository;
 }
 public TipoCalculoAppService(IMapper mapper, ICotacaoRepository cotacaoRepository)
 {
     _mapper            = mapper;
     _cotacaoRepository = cotacaoRepository;
 }
 public CotacaoItemController(IMapper mapper, ICotacaoItemRepository cotacaoItemRepository, ICotacaoRepository cotacaoRepository)
 {
     _mapper = mapper;
     _cotacaoItemRepository = cotacaoItemRepository;
     _cotacaoRepository     = cotacaoRepository;
 }
Example #9
0
 public CotacaoService(ICotacaoRepository repository)
 {
     _cotacaoRepository = repository;
 }
Example #10
0
 public CotacaoService(ICotacaoRepository repository)
 {
     this.repository = repository;
 }
Example #11
0
 public CotacaoAppService(IBus bus, IMapper mapper, ICotacaoRepository cotacaoRepository)
 {
     _bus               = bus;
     _mapper            = mapper;
     _cotacaoRepository = cotacaoRepository;
 }