Exemplo n.º 1
0
 public Employee(string name, Title title, string ssn)
 {
     _name  = name;
     _title = title;
     _ssn   = ssn;
 }
Exemplo n.º 2
0
 private Employee(Employee otherEmployee)
 {
     _name  = string.Copy(otherEmployee._name);
     _title = (Title)otherEmployee._title.Clone();
     _ssn   = string.Copy(otherEmployee._ssn);
 }
Exemplo n.º 3
0
 private Title(Title otherTitle)
 {
     _title = otherTitle._title;
     LookupPayScale();
 }