protected bool Equals(Customer other)
 {
     return string.Equals(CustomerID, other.CustomerID);
 }
Beispiel #2
0
 protected bool Equals(Customer other) => string.Equals(CustomerID, other.CustomerID);