Ejemplo n.º 1
0
 protected static StoreEvent Event(string payload, int revision) {
     var evt = new StringEvent {
         Payload = payload,
         StreamRevision = revision
     };
     return evt;
 }
Ejemplo n.º 2
0
 protected bool Equals(StringEvent other)
 {
     return base.Equals(other) && string.Equals(Payload, other.Payload);
 }