public IActionResult OnGet(Guid id) { ImpedimentoTarefa = _impedimentoTarefaAppService.Consultar(id); SelectImpedimentos = new SelectList(_impedimentoAppService.Listar(), "Id", "Nome"); return(Page()); }
public IEnumerable <ImpedimentoViewModel> Get() { return(_impedimentoAppService.Listar()); }
public IActionResult OnGet() { Lista = _impedimentoAppService.Listar(); return(Page()); }