Beispiel #1
0
 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;
 }
Beispiel #2
0
 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;
 }
Beispiel #3
0
 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;
 }
Beispiel #4
0
 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;
 }