public override async Task <ListarReply> Listar(Empty request, ServerCallContext context) { ListarReply result = new ListarReply(); result.Lista.AddRange(_mapper.Map <IEnumerable <TipoTarefaModel> >(_tipoTarefaAppService.Listar())); return(await Task.FromResult(result)); }
public IEnumerable <ImpedimentoViewModel> Get(bool getDependencies = false) { return(_impedimentoAppService.Listar(getDependencies)); }
public IEnumerable <ProjetoViewModel> Get(bool getDependencies = false) { return(_projetoAppService.Listar(getDependencies)); }
public IEnumerable <SistemaViewModel> Get() { return(_sistemaAppService.Listar()); }
public IEnumerable <ProjetoViewModel> Get() { return(_projetoAppService.Listar()); }
public IEnumerable <WorkflowViewModel> Get() { return(_workflowAppService.Listar()); }
public IEnumerable <ImpedimentoViewModel> Get() { return(_impedimentoAppService.Listar()); }
public IEnumerable <SistemaViewModel> Get(bool getDependencies = false) { return(_sistemaAppService.Listar(getDependencies)); }
public IEnumerable <TipoTarefaViewModel> Get() { return(_tipoTarefaAppService.Listar()); }
public IEnumerable <TipoTarefaViewModel> Get(bool getDependencies = false) { return(_tipoTarefaAppService.Listar(getDependencies)); }