Affecto.IdentityManagement.Store.EntityFramework.Queries.AccountExistsQuery.AccountExistsQuery C# (CSharp) Method

AccountExistsQuery() public method

public AccountExistsQuery ( IQueryable accounts ) : System
accounts IQueryable
return System
        public AccountExistsQuery(IQueryable<Account> accounts)
        {
            if (accounts == null)
            {
                throw new ArgumentNullException("accounts");
            }
            this.accounts = accounts;
        }