public Employee(string name, Title title, string ssn) { _name = name; _title = title; _ssn = ssn; }
private Employee(Employee otherEmployee) { _name = string.Copy(otherEmployee._name); _title = (Title)otherEmployee._title.Clone(); _ssn = string.Copy(otherEmployee._ssn); }
private Title(Title otherTitle) { _title = otherTitle._title; LookupPayScale(); }