Ejemplo n.º 1
0
 protected bool Equals(ProductPriceChanged other) =>
 base.Equals(other) && Price == other.Price && OccurredOn.Equals(other.OccurredOn) && Version == other.Version;
Ejemplo n.º 2
0
 protected bool Equals(ProductDescriptionChanged other) =>
 base.Equals(other) && Description == other.Description && OccurredOn.Equals(other.OccurredOn) && Version == other.Version;
Ejemplo n.º 3
0
 protected bool Equals(ProductNameChanged other) =>
 base.Equals(other) && Name == other.Name && OccurredOn.Equals(other.OccurredOn) && Version == other.Version;
Ejemplo n.º 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;