public PessoaCurriculoAppService()
 {
     _context = new RecursosHumanosContext();
     _pessoaCurriculoRepository = new PessoaCurriculoRepository(_context);
     _recrutamentoRepository    = new RecrutamentoRepository(_context);
     _demissaoRepository        = new DemissaoRepository(_context);
 }
示例#2
0
 public DemissaoAppService()
 {
     _context            = new RecursosHumanosContext();
     _demissaoRepository = new DemissaoRepository(_context);
 }