Пример #1
0
 protected bool Equals(ProductPriceChanged other) =>
 base.Equals(other) && Price == other.Price && OccurredOn.Equals(other.OccurredOn) && Version == other.Version;
Пример #2
0
 protected bool Equals(ProductDescriptionChanged other) =>
 base.Equals(other) && Description == other.Description && OccurredOn.Equals(other.OccurredOn) && Version == other.Version;
Пример #3
0
 protected bool Equals(ProductNameChanged other) =>
 base.Equals(other) && Name == other.Name && OccurredOn.Equals(other.OccurredOn) && Version == other.Version;
Пример #4
0
 protected bool Equals(ProductDefined other) =>
 base.Equals(other) && Description == other.Description && Name == other.Name && OccurredOn.Equals(other.OccurredOn) && Price == other.Price && Version == other.Version;