Execute() public method

public Execute ( string customPropertyName, string customPropertyValue ) : IQueryable
customPropertyName string
customPropertyValue string
return IQueryable
        public IReadOnlyCollection<User> GetUsers(string customPropertyName, string customPropertyValue)
        {
            var query = new UsersByCustomPropertyQuery(dbContext.Users);
            IQueryable<Model.User> users = query.Execute(customPropertyName, customPropertyValue);

            return new UserMapper().Map(users).ToList();
        }