public string getEndDate(string locationName)
 {
     location   = new Location();
     locationDB = new LocationDB();
     location.setName(locationName);
     locationDB.selectEndDate(location);
     return(location.getEndDate());
 }