Exemple #1
0
        public async Task <IActionResult> OnGetAsync(Guid idTarefa)
        {
            Tarefa = await _tarefaGrpcService.ConsultarAsync(idTarefa);

            SelectImpedimentos = new SelectList(await _impedimentoGrpcService.ListarAsync(), "Id", "Nome");

            return(Page());
        }
        public async Task <IActionResult> OnGetAsync(Guid id)
        {
            Projeto = await _projetoGrpcService.ConsultarAsync(id);

            SelectSistemas = new SelectList(await _sistemaGrpcService.ListarAsync(), "Id", "Nome");

            return(Page());
        }
Exemple #3
0
        public async Task <IActionResult> OnGetAsync()
        {
            SelectProjetos    = new SelectList(await _projetoGrpcService.ListarAsync(), "Id", "Nome");
            SelectSistemas    = new SelectList(await _sistemaGrpcService.ListarAsync(), "Id", "Descricao");
            SelectWorkflows   = new SelectList(await _workflowGrpcService.ListarAsync(), "Id", "Nome");
            SelectTipoTarefas = new SelectList(await _tipoTarefaGrpcService.ListarAsync(), "Id", "Nome");

            return(Page());
        }
Exemple #4
0
        public async Task <IActionResult> OnGetAsync()
        {
            Lista = await _workflowGrpcService.ListarAsync();

            ListaTarefas = await _tarefaGrpcService.ListarAsync();

            return(Page());
        }
        public async Task <IActionResult> OnGetAsync()
        {
            Lista = await _impedimentoGrpcService.ListarAsync();

            return(Page());
        }
        public async Task <IActionResult> OnGetAsync()
        {
            SelectSistemas = new SelectList(await _sistemaGrpcService.ListarAsync(), "Id", "Nome");

            return(Page());
        }
Exemple #7
0
        public async Task <IActionResult> OnGetAsync()
        {
            Lista = await _sistemaGrpcService.ListarAsync();

            return(Page());
        }