Beispiel #1
0
 private void AddHistory(IAmAuditable domainEvent, string description)
 {
     History.Add(new SessionHistory
     {
         Date = domainEvent.CommandDate,
         UserId = domainEvent.UserId,
         UserName = domainEvent.UserName,
         Description = description
     });
 }
Beispiel #2
0
 private void AddHistory(IAmAuditable domainEvent, string description)
 {
     History.Add(new SessionHistory
     {
         Date        = domainEvent.CommandDate,
         UserId      = domainEvent.UserId,
         UserName    = domainEvent.UserName,
         Description = description
     });
 }