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

AccountsQuery() public method

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