public CandidaturaGateway(ICandidaturaRepository repository, IRankingGateway rankingGateway, IVagaGateway vagaGateway, IPessoaGateway pessoaGateway)
        {
            _repository = repository;

            _rankingGateway = rankingGateway;
            _pessoaGateway  = pessoaGateway;
            _vagaGateway    = vagaGateway;
        }
 public PessoasController(IPessoaGateway gateway)
 {
     _gateway = gateway;
 }