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

RemoveUserAccountCommand() public method

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