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