public IActionResult OnGet(Guid id) { RecursoTarefa = _recursoTarefaAppService.Consultar(id); SelectRecursos = new SelectList(_recursoProjetoAppService.ListarPorProjeto(RecursoTarefa.Tarefa.IdProjeto), "Recurso.Id", "Recurso.Nome"); return(Page()); }
public IActionResult OnGet(Guid idProjeto) { Lista = _recursoProjetoAppService.ListarPorProjeto(idProjeto); ViewData["idProjeto"] = idProjeto; return(Page()); }
public override async Task <ListarPorProjetoReply> ListarPorProjeto(BaseRequest request, ServerCallContext context) { Guid id = new Guid(request.Id); ListarPorProjetoReply result = new ListarPorProjetoReply(); result.Lista.AddRange(_mapper.Map <IEnumerable <RecursoProjetoModel> >(_recursoProjetoAppService.ListarPorProjeto(id))); return(await Task.FromResult(result)); }
public IEnumerable <RecursoProjetoViewModel> GetByProjeto(Guid idRecurso) { return(_recursoProjetoAppService.ListarPorProjeto(idRecurso)); }