public EF_Stop(GTFS_Stop stop) { OriginalId = stop.StopId; StopName = stop.StopName; StopLatitude = stop.StopLatitude; StopLongitude = stop.StopLongitude; LocationType = stop.LocationType; WheelchairBoarding = stop.WheelchairBoarding; }
public VMDL_Stop(int id, string name, double lat, double lon, E_LocationType loctype, int? parentStation, E_WheelchairSupport wheelchair) { this.StopId = id; this.StopName = name; this.StopLatitude = lat; this.StopLongitude = lon; this.LocationType = loctype; this.ParentStation = parentStation; this.WheelchairBoarding = wheelchair; }
public VMDL_Stop(int id, string name, double lat, double lon, E_LocationType loctype, int?parentStation, E_WheelchairSupport wheelchair) { this.StopId = id; this.StopName = name; this.StopLatitude = lat; this.StopLongitude = lon; this.LocationType = loctype; this.ParentStation = parentStation; this.WheelchairBoarding = wheelchair; }
public EF_Trip(GTFS_Trip trip, EF_Route route, EF_Calendar calendar, EF_Shape shape) { OriginalId = trip.TripId; RouteId = route; ServiceId = calendar; ShapeId = shape; TripHeadsign = trip.TripHeadsign; DirectionId = trip.DirectionId; BlockId = trip.BlockId; WheelchairAccessible = trip.WheelchairAccessible; }
public Stop(int dbid, string id, string name, double lat, double lon, E_LocationType loctype, int?parentStation, E_WheelchairSupport wheelchair, int?gid) { this.DbId = dbid; this.StopId = id; this.StopName = name; this.StopLatitude = lat; this.StopLongitude = lon; this.LocationType = loctype; this.ParentStation = parentStation; this.WheelchairBoarding = wheelchair; this.GroupId = gid; }
public Stop(int dbid, string id, string name, double lat, double lon, E_LocationType loctype, int? parentStation, E_WheelchairSupport wheelchair, int? gid) { this.DbId = dbid; this.StopId = id; this.StopName = name; this.StopLatitude = lat; this.StopLongitude = lon; this.LocationType = loctype; this.ParentStation = parentStation; this.WheelchairBoarding = wheelchair; this.GroupId = gid; }