Beispiel #1
0
 public User(int carnet, string name, string email, int phone, bool state, RolUser rolUser, Career career)
 {
     this.carnet  = carnet;
     this.name    = name;
     this.email   = email;
     this.phone   = phone;
     this.rolUser = rolUser;
     this.career  = career;
 }
Beispiel #2
0
 public NewUser(int carnet, string name, string email, int phone, bool state, RolUser rolUser, Career career, string password) :
     base(carnet, name, email, phone, state, rolUser, career)
 {
     this.password = password;
 }