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