Esempio n. 1
0
        public IActionResult OnGet()
        {
            SelectProjetos    = new SelectList(_projetoAppService.Listar(), "Id", "Nome");
            SelectSistemas    = new SelectList(_sistemaAppService.Listar(), "Id", "Descricao");
            SelectWorkflows   = new SelectList(_workflowAppService.Listar(), "Id", "Nome");
            SelectTipoTarefas = new SelectList(_tipoTarefaAppService.Listar(), "Id", "Nome");

            return(Page());
        }
Esempio n. 2
0
 public IEnumerable <ProjetoViewModel> Get()
 {
     return(_projetoAppService.Listar());
 }
Esempio n. 3
0
        public IActionResult OnGet()
        {
            Lista = _projetoAppService.Listar();

            return(Page());
        }