Ejemplo n.º 1
0
        public IEnumerable <EstabelecimentoCommand> ObterTodos()
        {
            var lista = new List <EstabelecimentoCommand>();

            _estabelecimentoService.ObterTodos().ToList().ForEach(m => lista.Add(EstabelecimentoAdapter.ToModelDomain(m)));

            return(lista);
        }
Ejemplo n.º 2
0
 public async Task <ResultDto <IEnumerable <EstabelecimentoDto> > > GetAll(string url)
 {
     return(await _estabelecimentoService.ObterTodos(url));
 }