예제 #1
0
 public Patient(int id, string firstName, string lastName, string pesel)
 {
     Id        = id;
     FirstName = firstName;
     LastName  = lastName;
     PESEL     = pesel;
     FullName  = PatientHelper.GetFullName(firstName, lastName);
     Visits    = new List <Visit>();
 }