CQRS.Tests.CQRS.EventSourcing.SomeEvent.SomeEvent C# (CSharp) Метод

SomeEvent() публичный Метод

public SomeEvent ( System.Guid aggregateRootId, int version ) : System
aggregateRootId System.Guid
version int
Результат System
        public SomeEvent(Guid aggregateRootId, int version): base(aggregateRootId)
        {
            AggregateRootVersion = version;
            UtcTimeStamp = new DateTime(UtcTimeStamp.Year, UtcTimeStamp.Month, UtcTimeStamp.Day, UtcTimeStamp.Hour, UtcTimeStamp.Minute, UtcTimeStamp.Second);
        }
    }
SomeEvent