Affecto.AuditTrail.Commanding.Commands.CreateAuditTrailEntryCommand.CreateAuditTrailEntryCommand C# (CSharp) Method

CreateAuditTrailEntryCommand() public method

public CreateAuditTrailEntryCommand ( System.Guid auditTrailEntryId, System.Guid subjectId, System.Guid userId, string summary, string subjectName, string userName ) : System
auditTrailEntryId System.Guid
subjectId System.Guid
userId System.Guid
summary string
subjectName string
userName string
return System
        public CreateAuditTrailEntryCommand(Guid auditTrailEntryId, Guid subjectId, Guid userId, string summary, string subjectName, string userName)
            : this(auditTrailEntryId, subjectId, summary, subjectName, userName)
        {
            if (userId.Equals(Guid.Empty))
            {
                throw new ArgumentException("userId");
            }
            UserId = userId;
        }

Same methods

CreateAuditTrailEntryCommand::CreateAuditTrailEntryCommand ( System.Guid auditTrailEntryId, System.Guid subjectId, string summary, string subjectName, string userName ) : System
CreateAuditTrailEntryCommand