// GET: Restaurant
        public ActionResult Index()
        {
            var model = _dbData.GetAllData();

            return(View(model));
        }
        public IEnumerable <Restaurant> GetRestraData()
        {
            var model = _dbData.GetAllData();

            return(model);
        }