コード例 #1
0
 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;
 }
コード例 #2
0
 public Utilizatori()
 {
     this.nume   = "Anonim";
     this.varsta = 0;
     this.cnp    = 0;
     this.drept  = new Drept();
     this.grup   = new Grup();
 }