Ejemplo n.º 1
0
        public IActionResult OnGet(Guid id)
        {
            ImpedimentoTarefa  = _impedimentoTarefaAppService.Consultar(id);
            SelectImpedimentos = new SelectList(_impedimentoAppService.Listar(), "Id", "Nome");

            return(Page());
        }
Ejemplo n.º 2
0
 public IEnumerable <ImpedimentoViewModel> Get()
 {
     return(_impedimentoAppService.Listar());
 }
Ejemplo n.º 3
0
        public IActionResult OnGet()
        {
            Lista = _impedimentoAppService.Listar();

            return(Page());
        }