示例#1
0
        public IActionResult OnGet(Guid id)
        {
            Projeto        = _projetoAppService.Consultar(id);
            SelectSistemas = new SelectList(_sistemaAppService.Listar(), "Id", "Nome");

            return(Page());
        }
示例#2
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());
        }
示例#3
0
 public IEnumerable <SistemaViewModel> Get()
 {
     return(_sistemaAppService.Listar());
 }
示例#4
0
        public IActionResult OnGet()
        {
            SelectSistemas = new SelectList(_sistemaAppService.Listar(), "Id", "Nome");

            return(Page());
        }
示例#5
0
        public IActionResult OnGet()
        {
            Lista = _sistemaAppService.Listar();

            return(Page());
        }