예제 #1
0
 /// <summary>
 /// Constructor. Initializes the form with an empty staff
 /// </summary>
 public StaffForm()
 {
     InitializeComponent();
     if (staff == null)
     {
         staff = new StaffPerson();
     }
 }
예제 #2
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="other"></param>
 public StaffPerson(StaffPerson other)
 {
     _name          = other._name;
     qualifications = other.qualifications;
 }