public ActionResult SelectLocation()
        {
            List <Location> locations = allLocations.GetAllLocationsDB();

            return(View(locations));
        }
        public void GetAllLocations()
        {
            var allLocations = new AllLocationsDB();

            allLocations.GetAllLocationsDB();
        }