// GET: ProcessoSeletivo public ActionResult Index() { var processoSeletivoViewModel = Mapper.Map <IEnumerable <ProcessoSeletivo>, IEnumerable <ProcessoSeletivoViewModel> >(_processoSeletivoAppServico.ObtemTodos()); return(View(processoSeletivoViewModel)); }
public ActionResult PopUpImportarCandidatos() { ViewBag.ProcessoSeletivo = new SelectList(_processoSeletivoAppServico.ObtemTodos(), "Id", "Titulo"); return(PartialView("~/Views/Candidato/_ImportarCandidatos.cshtml")); }