Esempio n. 1
0
        public Farmacist(AdresaFarmacie adresa)
        {
            this.adresaFarmacie = adresa;



        }
Esempio n. 2
0
 public void CreateValueObject(Farmacist f)
 {
     this.Nume           = new Text(f.strNume);
     this.Prenume        = new Text(f.strPrenume);
     this.cnp            = new CNP(new Text(f.strCNP));
     this.nrTelefon      = new NrTelefon(new Text(f.strNrTelefon));
     this.email          = new Email(new Text(f.strEmail));
     this.adresaFarmacie = new AdresaFarmacie(new Text(f.strAdresaFarmacie));
     this.parola         = new Parola(new Text(f.strParola));
 }