Ejemplo n.º 1
0
 protected bool Equals(PersonEmployment other)
 {
     return(string.Equals(_name, other._name) && string.Equals(_company, other._company));
 }
Ejemplo n.º 2
0
 public PersonEmpKey(PersonEmployment personEmployment)
 {
     _name    = personEmployment.Name;
     _company = personEmployment.Company;
 }