public Utilizatori(string nume, int varsta, double cnp, Drept drept, Grup grup) { this.nume = nume; this.varsta = varsta; this.cnp = cnp; this.drept = drept; this.grup = grup; }
public Utilizatori() { this.nume = "Anonim"; this.varsta = 0; this.cnp = 0; this.drept = new Drept(); this.grup = new Grup(); }