public Pacient creeazaPacient(string c, NumeIntreg numePacient, string sex, Data dataNastere, Adresa adresa, string ocupatie, string locMunca) { var pacient = new Pacient(c, numePacient, sex, dataNastere, adresa, ocupatie, locMunca); Pacient.listaPacienti.Add(pacient); return(pacient); }
public Pacient() { cnp = ""; numePacient = new NumeIntreg("", ""); sex = ""; dataNastere = new Data(0, 0, 0); adresa = new Adresa("", "", "", 0); ocupatie = ""; locMunca = ""; }
public Pacient(string cnp1, string n, string p, int zi, int luna, int an, string j, string l, string s, int nr, string o, string m) { cnp = cnp1; numePacient = new NumeIntreg(n, p); dataNastere = new Data(zi, luna, an); adresa = new Adresa(j, l, s, nr); ocupatie = o; locMunca = m; // afectiuneRecomandare = new Dictionary<string, string>(); afectiuneRecomandare = new NameValueCollection(); istoricExistent = 0; }
public Pacient(string c, NumeIntreg n, string s, Data d, Adresa adr, string o, string l) { cnp = c; numePacient = n; dataNastere = d; sex = s; adresa = adr; ocupatie = o; locMunca = l; //afectiuneRecomandare = new Dictionary<string, string>(); afectiuneRecomandare = new NameValueCollection(); }