예제 #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());
        }
예제 #2
0
 public IEnumerable <ProjetoViewModel> Get()
 {
     return(_projetoAppService.Listar());
 }
예제 #3
0
        public IActionResult OnGet()
        {
            Lista = _projetoAppService.Listar();

            return(Page());
        }