Exemplo n.º 1
0
        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));
        }
Exemplo n.º 2
0
 public IEnumerable <ImpedimentoViewModel> Get(bool getDependencies = false)
 {
     return(_impedimentoAppService.Listar(getDependencies));
 }
Exemplo n.º 3
0
 public IEnumerable <ProjetoViewModel> Get(bool getDependencies = false)
 {
     return(_projetoAppService.Listar(getDependencies));
 }
Exemplo n.º 4
0
 public IEnumerable <SistemaViewModel> Get()
 {
     return(_sistemaAppService.Listar());
 }
Exemplo n.º 5
0
 public IEnumerable <ProjetoViewModel> Get()
 {
     return(_projetoAppService.Listar());
 }
Exemplo n.º 6
0
 public IEnumerable <WorkflowViewModel> Get()
 {
     return(_workflowAppService.Listar());
 }
 public IEnumerable <ImpedimentoViewModel> Get()
 {
     return(_impedimentoAppService.Listar());
 }
Exemplo n.º 8
0
 public IEnumerable <SistemaViewModel> Get(bool getDependencies = false)
 {
     return(_sistemaAppService.Listar(getDependencies));
 }
Exemplo n.º 9
0
 public IEnumerable <TipoTarefaViewModel> Get()
 {
     return(_tipoTarefaAppService.Listar());
 }
Exemplo n.º 10
0
 public IEnumerable <TipoTarefaViewModel> Get(bool getDependencies = false)
 {
     return(_tipoTarefaAppService.Listar(getDependencies));
 }