Beispiel #1
0
 public ClienteBusiness(IClienteRepository repository, IProfissaoRepository profissaoRepository,
                        IValidator <Cliente> validator,
                        INotification notification)
     : base(repository, validator, notification)
 {
     this.profissaoRepository = profissaoRepository;
 }
Beispiel #2
0
 public ProfissaoService(IProfissaoRepository profissaoRepository,
                         IMapper mapper,
                         IUnitOfWork uow)
 {
     _profissaoRepository = profissaoRepository;
     _mapper = mapper;
     _uow    = uow;
 }
Beispiel #3
0
 private void ResetAll()
 {
     atividadesExtras      = null;
     contingentes          = null;
     contingenteFotos      = null;
     escolaridades         = null;
     faltasOuAtrasos       = null;
     horasExtras           = null;
     justicasOuDisciplinas = null;
     patentes      = null;
     religioes     = null;
     tAFs          = null;
     turmas        = null;
     profissoes    = null;
     usuarios      = null;
     configuracoes = null;
     servicos      = null;
     context       = new USGTContext();
 }
Beispiel #4
0
 public ProfissaoService(IProfissaoRepository profissaoRepository)
     : base(profissaoRepository)
 {
     _profissaoRepository = profissaoRepository;
 }
Beispiel #5
0
 public ProfissaoService(IProfissaoRepository baseRepository, ILogRepository logRepository) : base(baseRepository)
 {
     _baseRepository = baseRepository;
     _logRepository  = logRepository;
 }
 public ProfissaoService(IProfissaoRepository clienteRepository)
 {
     _clienteRepository = clienteRepository;
 }
Beispiel #7
0
 public ProfissaoAppService(IProfissaoRepository ProfissaoRepository, MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.profissaoRepository = ProfissaoRepository;
 }
Beispiel #8
0
 public AppProfissao(IProfissaoRepository IProfissao)
 {
     _IProfissao = IProfissao;
 }
Beispiel #9
0
 public ProfissaoService(IProfissaoRepository repository)
 {
     _repository = repository;
 } //constructor
 public ProfissoesController()
 {
     ProfissaoRepository = new ProfissaoRepository();
 }
Beispiel #11
0
 public ProfissaoService(IProfissaoRepository repository)
 {
     _repository = repository;
 }
Beispiel #12
0
 public ProfissaoService(IProfissaoRepository app)
 {
     _app = app;
 }
Beispiel #13
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;
        }
Beispiel #14
0
 public ProfissaoController(IProfissaoRepository repository, IConfiguration configuration)
 {
     _repository = repository;
     _config     = configuration;
 }