public IEnumerable <EstabelecimentoCommand> ObterTodosPorStatus(bool ativo) { var lista = new List <EstabelecimentoCommand>(); _estabelecimentoService.ObterTodosPorStatus(ativo).ToList().ForEach(m => lista.Add(EstabelecimentoAdapter.ToModelDomain(m))); return(lista); }