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