public PessoaCurriculoAppService()
 {
     _context = new RecursosHumanosContext();
     _pessoaCurriculoRepository = new PessoaCurriculoRepository(_context);
     _recrutamentoRepository    = new RecrutamentoRepository(_context);
     _demissaoRepository        = new DemissaoRepository(_context);
 }
 public DadosRelatorioAppService()
 {
     _context = new RecursosHumanosContext();
     _pessoaCurriculoRepository = new PessoaCurriculoRepository(_context);
     _recrutamentoRepository    = new RecrutamentoRepository(_context);
     _producaoApiService        = new ProducaoApiService();
     _marketingApiService       = new MarketingApiService();
     _financeiroApiService      = new FinanceiroApiService();
     _todosOsDados = new List <DadosRelatoriosViewModel>();
 }
示例#3
0
 public Repository(RecursosHumanosContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
示例#4
0
 public DemissaoRepository(RecursosHumanosContext context) : base(context)
 {
 }
示例#5
0
 public RecrutamentoAppService()
 {
     _context = new RecursosHumanosContext();
     _recrutamentoRepository = new RecrutamentoRepository(_context);
 }
示例#6
0
 public PessoaCurriculoRepository(RecursosHumanosContext context) : base(context)
 {
 }
示例#7
0
 public DemissaoAppService()
 {
     _context            = new RecursosHumanosContext();
     _demissaoRepository = new DemissaoRepository(_context);
 }
示例#8
0
 public RecrutamentoRepository(RecursosHumanosContext context) : base(context)
 {
 }