public IEnumerable <Restaurante> Get()
        {
            var model = _db.GetAll();

            return(model);
        }
Beispiel #2
0
        // GET: Restaurants
        public ActionResult Index()
        {
            var model = _db.GetAll();

            return(View(model));
        }