Akka.EventStore.Cqrs.Core.Command.Command C# (CSharp) Method

Command() protected method

protected Command ( System.Guid aggregateId ) : Akka.Routing
aggregateId System.Guid
return Akka.Routing
        protected Command(Guid aggregateId)
        {
            AggregateId = aggregateId;
            UtcDate = SystemClock.UtcNow;
            Version = -1;
            Metadata = new Dictionary<string, string>();
        }
        protected Command(Guid aggregateId, int version)

Same methods

Command::Command ( System.Guid aggregateId, IMessageContext context ) : Akka.Routing
Command::Command ( System.Guid aggregateId, int version ) : Akka.Routing
Command::Command ( System.Guid aggregateId, int version, IMessageContext context ) : Akka.Routing
Command