Example #1
0
 public Station(string id_station, List<Prix> price_list, string address, string city, string code_postal, float longitude, float lattitude, string id_enseigne, string enseigne_marque, string tel, string dateCreation)
 {
     this.id_station = id_station;
     this.price_list = price_list;
     this.address = address;
     this.city = city;
     this.code_postal = code_postal;
     this.longitude = longitude;
     this.lattitude = lattitude;
     this.id_enseigne = id_enseigne;
     this.dateCreation = dateCreation;
     this.enseigne = new Enseigne(id_enseigne, enseigne_marque);
     this.tel = tel;
 }
Example #2
0
 public void setEnseigne(Enseigne enseigne)
 {
     this.enseigne = enseigne;
 }