Ejemplo n.º 1
0
 public bool Equals(Freelancer another)
 {
     return(Name.Equals(another.Name) &&
            MonyPerHour.Equals(another.MonyPerHour) &&
            Experience.Equals(another.Experience) &&
            Gender.Equals(another.Gender));
 }
Ejemplo n.º 2
0
 public bool Equals(Employee another)
 {
     return(Name.Equals(another.Name) &&
            MonyPerHour.Equals(another.MonyPerHour) &&
            Level.Equals(another.Level) &&
            Gender.Equals(another.Gender));
 }