Example #1
0
 public Station(String id, String name, int brand, double latitude, double longitude)
 {
     this.ID       = id;
     this.Name     = name;
     this.Brand    = (Brand)brand;
     this.Location = new GlobalCoordinate(latitude, longitude);
 }
Example #2
0
 public Station(String id, String name, String brand, double latitude, double longitude)
 {
     this.ID       = id;
     this.Name     = name;
     this.Brand    = BrandHelpers.FromString(brand);
     this.Location = new GlobalCoordinate(latitude, longitude);
 }