public EstDesserviDans(decimal tarif, Territoire territoire, ServiceDiffusion serviceDiffusion)
 {
     this.Id               = Id;
     this.tarif            = tarif;
     this.territoire       = territoire;
     this.serviceDiffusion = serviceDiffusion;
 }
 public Client(string téléphone, string adresse, Territoire territoire)
 {
     this.Id         = Id;
     this.téléphone  = téléphone;
     this.adresse    = adresse;
     this.territoire = territoire;
 }
Example #3
0
 public Technicien(string mdp, string nom, string prénom, string téléphone, string adresse, decimal salaire, Territoire territoire) : base("t", mdp, nom, prénom, téléphone, adresse, salaire)
 {
     this.territoire = territoire;
 }
Example #4
0
 public ClientPersonne(string téléphone, string adresse, Territoire territoire, string nom, string prénom) : base(téléphone, adresse, territoire)
 {
     this.nom    = nom;
     this.prénom = prénom;
 }
Example #5
0
 public ClientEntreprise(string téléphone, string adresse, Territoire territoire, string raisonSociale) : base(téléphone, adresse, territoire)
 {
     this.raisonSociale = raisonSociale;
 }