Affecto.IdentityManagement.ApplicationServices.UserService.IsExistingUserAccount C# (CSharp) Метод

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

public IsExistingUserAccount ( string accountName, Affecto.IdentityManagement.Interfaces.Model.AccountType accountType ) : bool
accountName string
accountType Affecto.IdentityManagement.Interfaces.Model.AccountType
Результат bool
        public bool IsExistingUserAccount(string accountName, AccountType accountType)
        {
            return queryService.IsExistingUser(accountName, (Querying.Data.AccountType)accountType);
        }