private List <Station> fillStation(long id)
        {
            TripAccess db       = new TripAccess();
            var        stations = db.GetTripStations(id);

            return(stations);
        }