Exemplo n.º 1
0
 public ClaimFulfilledEvent(IAggregateAddress source, decimal amount) : this(source.Id, amount)
 {
 }
Exemplo n.º 2
0
 protected Command(IAggregateAddress destination, string id)
 {
     Destination = destination;
     Id          = id;
 }
Exemplo n.º 3
0
 public AggregateEvent(IAggregateAddress source, string id, DateTimeOffset occured)
 {
     Source  = source;
     Id      = id;
     Occured = occured;
 }