public NotificacaoController(INotificacaoRepository notificacaoRepository, INotificacaoService notificacaoService, Notification notification) { _notificacaoRepository = notificacaoRepository; _notificacaoService = notificacaoService; _notification = notification; }
public TransferenciaService(ITransferenciaRepository transferenciaRepository, Notification notification, INotificacaoService notificacaoService, IContaFinanceiraRepository contaFinanceiraRepository) { _transferenciaRepository = transferenciaRepository; _notification = notification; _notificacaoService = notificacaoService; _contaFinanceiraRepository = contaFinanceiraRepository; }
public ContaConjuntaService(IContaConjuntaRepository contaConjuntaRepository, IUsuarioRepository usuarioRepository, Notification notification, ILancamentoCategoriaRepository lancamentoCategoriaRepository, INotificacaoRepository notificacaoRepository, INotificacaoService notificacaoService, IContaFinanceiraRepository contaFinanceiraRepository) { _contaConjuntaRepository = contaConjuntaRepository; _usuarioRepository = usuarioRepository; _notification = notification; _lancamentoCategoriaRepository = lancamentoCategoriaRepository; _notificacaoRepository = notificacaoRepository; _notificacaoService = notificacaoService; _contaFinanceiraRepository = contaFinanceiraRepository; }
public LancamentoService(Notification notification, ILancamentoRepository lancamentoRepository, ICompromissoRepository compromissoRepository, ILancamentoCategoriaRepository lancamentoCategoriaRepository, IContaConjuntaRepository contaConjuntaRepository, INotificacaoService notificacaoService, IContaFinanceiraRepository contaFinanceiraRepository) { _notification = notification; _lancamentoRepository = lancamentoRepository; _compromissoRepository = compromissoRepository; _lancamentoCategoriaRepository = lancamentoCategoriaRepository; _contaConjuntaRepository = contaConjuntaRepository; _notificacaoService = notificacaoService; _contaFinanceiraRepository = contaFinanceiraRepository; }
public NotificacaoAppService(INotificacaoService baseService) : base(baseService) { _baseService = baseService; }
public TarefaAppService(ITarefaService baseService, INotificacaoService notiService) : base(baseService) { _baseService = baseService; _notiService = notiService; }
public CapsulaDoTempoService(IRepositorioCapsulaDoTempo _repositorio, INotificacaoService _notificacao, ICryptoService _cryptoService) { repositorio = _repositorio; notificacao = _notificacao; cryptoService = _cryptoService; }
public UsuarioAppService(IUsuarioService usuarioService, INotificacaoService notiService) : base(usuarioService) { _usuarioService = usuarioService; _notiService = notiService; }
public ContaCorrenteService(INotificacaoService notificacaoService, IContaCorrenteRepository contaCorrenteRepository) { _notificacaoService = notificacaoService; _contaCorrenteRepository = contaCorrenteRepository; }