Affecto.IdentityManagement.Commanding.Commands.UpdateUserAccountCommand.UpdateUserAccountCommand C# (CSharp) Метод

UpdateUserAccountCommand() публичный Метод

public UpdateUserAccountCommand ( System.Guid userId, Interfaces type, string name ) : System
userId System.Guid
type Interfaces
name string
Результат System
        public UpdateUserAccountCommand(Guid userId, Interfaces.Model.AccountType type, string name)
        {
            UserId = userId;
            Type = type;
            Name = name;
        }
UpdateUserAccountCommand