示例#1
0
        public GetBudgetById(
            Neo4JConnection connection,
            IEnumerable <IWhere <string, Filter> > where)
        {
            where = where.ToList();

            this.connection       = connection;
            this.where            = where.First(item => item.Name == typeof(Where).FullName);
            this.whereTransaction = where.First(item => item.Name == typeof(WhereTransaction).FullName);
        }
示例#2
0
        public GetBudgets(
            Neo4JConnection connection,
            ILimit <int, Filter> limit,
            ISkip <int, Filter> skip,
            IEnumerable <IWhere <string, Filter> > where)
        {
            where = where.ToList();

            this.connection       = connection;
            this.limit            = limit;
            this.skip             = skip;
            this.where            = where.First(item => item.Name == typeof(Where).FullName);
            this.whereTransaction = where.First(item => item.Name == typeof(WhereTransaction).FullName);
        }