コード例 #1
0
 public Adresse(int numImmeuble, String nomRue, int numAppt, String codePostal, String ville, Listesdesprovinces province)
 {
     this.NumImmeuble = numImmeuble;
     this.NomRue      = nomRue;
     this.NumAppt     = numAppt;
     this.CodePostal  = codePostal;
     this.ville       = ville;
     this.Province    = province;
 }
コード例 #2
0
 public PersonnelTemporaire(int id, String nom, String prenom, String nas, String cellulaire, String mail,
                            EnumTypePersonnel typepersonnel, Date dateEmbauche, Date dateNaissance,
                            int numImmeuble, String nomRue, int numAppt, String codePostal, String ville, Listesdesprovinces province, double tauxHoraire, double nombreHeure)
     : base(id, nom, prenom, nas, cellulaire, mail, typepersonnel, dateEmbauche, dateNaissance,
            numImmeuble, nomRue, numAppt, codePostal, ville, province)
 {
     this.TauxHoraire = tauxHoraire;
     this.NombreHeure = nombreHeure;
 }
コード例 #3
0
 public PersonnelPermanent(int id, String nom, String prenom, String nas, String cellulaire, String mail,
                           EnumTypePersonnel typepersonnel, Date dateEmbauche, Date dateNaissance,
                           int numImmeuble, String nomRue, int numAppt, String codePostal, String ville, Listesdesprovinces province, FonctionsPermanents fonction, double salaireAnnuel)
     : base(id, nom, prenom, nas, cellulaire, mail, typepersonnel, dateEmbauche, dateNaissance,
            numImmeuble, nomRue, numAppt, codePostal, ville, province)
 {
     this.fonction      = fonction;
     this.salaireAnnuel = salaireAnnuel;
 }
コード例 #4
0
 public Personnel(int id, String nom, String prenom, String nas, String cellulaire, String mail, EnumTypePersonnel typepersonnel, Date dateEmbauche, Date dateNaissance,
                  int numImmeuble, String nomRue, int numAppt, String codePostal, String ville, Listesdesprovinces province)
 {
     this.id = System.Threading.Interlocked.Increment(ref idIncrement);
     //this.id = Sequences.index++;
     this.nom                       = nom;
     this.prenom                    = prenom;
     this.nas                       = nas;
     this.cellulaire                = cellulaire;
     this.mail                      = mail;
     this.typepersonnel             = typepersonnel;
     this.dateEmbauche              = dateEmbauche;
     this.dateNaissance             = dateNaissance;
     this.AdressePostal.NomRue      = nomRue;
     this.AdressePostal.NumImmeuble = numImmeuble;
     this.AdressePostal.NumAppt     = numAppt;
     this.AdressePostal.CodePostal  = codePostal;
     this.AdressePostal.Ville       = ville;
     this.AdressePostal.Province    = province;
 }