Example #1
0
 public TabelaAuxiliarController(ICategoriaContatoAppService ccApps, ICategoriaNotificacaoAppService cnApps, IOrigemAppService orApps, IProfissaoAppService prApps, IClubeAppService clApps)
 {
     ccApp = ccApps;
     cnApp = cnApps;
     orApp = orApps;
     prApp = prApps;
     clApp = clApps;
 }
Example #2
0
 public ClienteController(IDomainNotificationHandler <DomainNotification> notifications,
                          IUser user,
                          IBus bus,
                          IClienteAppService clienteAppService,
                          IPaisResidenciaAppService paisResidenciaAppService,
                          IProfissaoAppService profissaoAppService)
     : base(notifications, user, bus)
 {
     _clienteAppService        = clienteAppService;
     _paisResidenciaAppService = paisResidenciaAppService;
     _profissaoAppService      = profissaoAppService;
 }
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, INotificacaoAppService notfApps, IUsuarioAppService usuApps, IOrigemAppService oriApps, IProfissaoAppService proApps, IClubeAppService cluApps, ICategoriaContatoAppService ccApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     notfApp = notfApps;
     usuApp  = usuApps;
     oriApp  = oriApps;
     proApp  = proApps;
     cluApp  = cluApps;
     ccApp   = ccApps;
 }
Example #4
0
 public ProfissaoController(IProfissaoAppService profissaoApp)
 {
     _profissaoApp = profissaoApp;
 }
Example #5
0
        public TabelaBasicaAppService(IParametrosFinanceiroRepository parametrosFinanceiroRepository,
                                      IAssuntoContatoAppService assuntoContatoAppService,
                                      IAssuntoContatoRepository assuntoContatoRepository,
                                      IInteresseBairroAppService interesseBairroAppService,
                                      IInteresseBairroRepository interesseBairroRepository,
                                      IEstadoCivilAppService estadoCivilAppService,
                                      IEstadoCivilRepository estadoCivilRepository,
                                      IFonteNegocioAppService fonteNegocioAppService,
                                      IFonteNegocioRepository fonteNegocioRepository,
                                      IGrupoAppService grupoAppService,
                                      IGrupoRepository grupoRepository,
                                      INacionalidadeAppService nacionalidadeAppService,
                                      INacionalidadeRepository nacionalidadeRepository,
                                      IParentescoAppService parentescoAppService,
                                      IParentescoRepository parentescoRepository,
                                      IProfissaoAppService profissaoAppService,
                                      IProfissaoRepository profissaoRepository,
                                      IRamoAtividadeAppService ramoAtividadeAppService,
                                      IRamoAtividadeRepository ramoAtividadeRepository,
                                      IRelacionamentoAppService relacionamentoAppService,
                                      IRelacionamentoRepository relacionamentoRepository,
                                      ITipologiaAppService tipologiaAppService,
                                      ITipologiaRepository tipologiaRepository,
                                      ITratamentoAppService tratamentoAppService,
                                      ITratamentoRepository tratamentoRepository,
                                      ITipoAreaAppService tipoAreaAppService,
                                      ITipoAreaRepository tipoAreaRepository,
                                      ITipoCaracteristicaAppService tipoCaracteristicaAppService,
                                      ITipoCaracteristicaRepository tipoCaracteristicaRepository,
                                      ITipoEspecificacaoAppService tipoEspecificacaoAppService,
                                      ITipoEspecificacaoRepository tipoEspecificacaoRepository,
                                      MessageQueue messageQueue)
            : base(messageQueue)
        {
            this.parametrosFinanceiroRepository = parametrosFinanceiroRepository;
            this.assuntoContatoAppService       = assuntoContatoAppService;
            this.interesseBairroAppService      = interesseBairroAppService;
            this.estadoCivilAppService          = estadoCivilAppService;
            this.fonteNegocioAppService         = fonteNegocioAppService;
            this.grupoAppService              = grupoAppService;
            this.nacionalidadeAppService      = nacionalidadeAppService;
            this.parentescoAppService         = parentescoAppService;
            this.profissaoAppService          = profissaoAppService;
            this.ramoAtividadeAppService      = ramoAtividadeAppService;
            this.relacionamentoAppService     = relacionamentoAppService;
            this.tipologiaAppService          = tipologiaAppService;
            this.tratamentoAppService         = tratamentoAppService;
            this.tipoAreaAppService           = tipoAreaAppService;
            this.tipoCaracteristicaAppService = tipoCaracteristicaAppService;
            this.tipoEspecificacaoAppService  = tipoEspecificacaoAppService;

            this.assuntoContatoRepository     = assuntoContatoRepository;
            this.interesseBairroRepository    = interesseBairroRepository;
            this.estadoCivilRepository        = estadoCivilRepository;
            this.fonteNegocioRepository       = fonteNegocioRepository;
            this.grupoRepository              = grupoRepository;
            this.nacionalidadeRepository      = nacionalidadeRepository;
            this.parentescoRepository         = parentescoRepository;
            this.profissaoRepository          = profissaoRepository;
            this.ramoAtividadeRepository      = ramoAtividadeRepository;
            this.relacionamentoRepository     = relacionamentoRepository;
            this.tipologiaRepository          = tipologiaRepository;
            this.tratamentoRepository         = tratamentoRepository;
            this.tipoAreaRepository           = tipoAreaRepository;
            this.tipoCaracteristicaRepository = tipoCaracteristicaRepository;
            this.tipoEspecificacaoRepository  = tipoEspecificacaoRepository;
        }