Esempio n. 1
0
 public SpeechCreatedEvent(Guid id, string title, string url,
                           string description, SpeechTypeEnum type)
 {
     AggregateId = id;
     Title       = title;
     Url         = url;
     Description = description;
     Type        = type;
 }
Esempio n. 2
0
 public SpeechTypeChangedEvent(Guid aggregateId, SpeechTypeEnum type)
 {
     AggregateId = aggregateId;
     Type        = type;
 }