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

CreateUserPasswordAccountCommand() public method

public CreateUserPasswordAccountCommand ( System.Guid userId, string name, string password ) : System
userId System.Guid
name string
password string
return System
        public CreateUserPasswordAccountCommand(Guid userId, string name, string password)
        {
            UserId = userId;
            Name = name;
            Password = password;
        }
CreateUserPasswordAccountCommand