public ActionResult Create(FormCollection collection)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    Models.Restaurant temp = new Models.Restaurant
                    {
                        //Id = int.Parse(collection["Id"]),
                        Name        = collection["Name"],
                        Address     = collection["Address"],
                        City        = collection["City"],
                        State       = collection["State"],
                        PhoneNumber = collection["PhoneNumber"]
                    };

                    da.InsertRestaurant(temp);

                    return(RedirectToAction("Index"));
                }
                return(View());
            }
            catch
            {
                return(View());
            }
        }