Affecto.IdentityManagement.Commanding.Commands.CreateExternalUserAccountCommand.CreateExternalUserAccountCommand C# (CSharp) Method

CreateExternalUserAccountCommand() public method

public CreateExternalUserAccountCommand ( System.Guid userId, Interfaces type, string name ) : System
userId System.Guid
type Interfaces
name string
return System
        public CreateExternalUserAccountCommand(Guid userId, Interfaces.Model.AccountType type, string name)
        {
            UserId = userId;
            Type = type;
            Name = name;
        }
CreateExternalUserAccountCommand