Esempio n. 1
0
 public Parking(Guid id, string titre, Adresse adressePark, int nBPlaceTotal, int nBPlaceLibre, string tarif, string horraire, string statut)
 {
     Id           = id;
     Titre        = titre;
     AdressePark  = adressePark;
     NBPlaceTotal = nBPlaceTotal;
     NBPlaceLibre = nBPlaceLibre;
     Tarif        = tarif;
     Horraire     = horraire;
     Statut       = statut;
 }
Esempio n. 2
0
 public Evenement(Guid id, string titre, Adresse adresseEvenement, int duree, string theme, int tarif, string description, Image ImageEvenement, DateTime dateEvenement)
 {
     Id                  = id;
     Titre               = titre;
     Duree               = duree;
     Theme               = theme;
     Tarif               = tarif;
     Description         = description;
     this.ImageEvenement = ImageEvenement;
     DateEvenement       = dateEvenement;
     AdresseEvenement    = adresseEvenement;
 }