Ejemplo n.º 1
0
 public SolicitacaoService(ISolicitacaoRepository _SolicitacaoRepository,
                           ICursoRepository _CursoRepository,
                           ICursoSemTurmaRepository _CursoSemTurmaRepository,
                           IPessoaRepository _PessoaRepository,
                           IAreaRepository _AreaRepository,
                           IContratoRepository _ContratoRepository,
                           IEmpresaRepository _EmpresaRepository,
                           ITipoSolicitacaoRepository _TipoSolicitacaoRepository,
                           ICredencialRepository _CredencialRepository,
                           ICargoRepository _CargoRepository,
                           IRamoAtividadeRepository _RamoAtividadeRepository)
 {
     SolicitacaoRepository     = _SolicitacaoRepository;
     CursoRepository           = _CursoRepository;
     CursoSemTurmaRepository   = _CursoSemTurmaRepository;
     PessoaRepository          = _PessoaRepository;
     AreaRepository            = _AreaRepository;
     ContratoRepository        = _ContratoRepository;
     EmpresaRepository         = _EmpresaRepository;
     TipoSolicitacaoRepository = _TipoSolicitacaoRepository;
     CredencialRepository      = _CredencialRepository;
     CargoRepository           = _CargoRepository;
     RamoAtividadeRepository   = _RamoAtividadeRepository;
 }
Ejemplo n.º 2
0
 public RamoAtividadeAppService(IRamoAtividadeRepository RamoAtividadeRepository, MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.ramoAtividadeRepository = RamoAtividadeRepository;
 }
Ejemplo n.º 3
0
 public RamoAtividadeService(IRamoAtividadeRepository _repository)
 {
     repository = _repository;
 }
Ejemplo n.º 4
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;
        }