Ejemplo n.º 1
0
 public Employe(int id, string nom, string prenom, int age, string sexe, string email, string contact,
                TypeEmploye typeEmploye)
 {
     this.Id          = id;
     this.Nom         = nom;
     this.Prenom      = prenom;
     this.Age         = age;
     this.Sexe        = sexe;
     this.Email       = email;
     this.Contact     = contact;
     this.TypeEmploye = typeEmploye;
 }
Ejemplo n.º 2
0
 public Employe(TypeEmploye typeEmploye)
 {
     this.TypeEmploye = typeEmploye;
 }