Beispiel #1
0
        public List <Restaurante> ConsultarTodos()
        {
            _conexion.Open();
            List <Restaurante> restaurantes = _repositorio.ConsultarTodos();

            _conexion.Close();
            return(restaurantes);
        }