public GetInstallments( Neo4JConnection connection, ILimit <int, Filter> limit, ISkip <int, Filter> skip) { this.connection = connection; this.limit = limit; this.skip = skip; }
public GetPaymentMethods( Neo4JConnection connection, ILimit <int, Filter> limit, ISkip <int, Filter> skip) { this.connection = connection; this.limit = limit; this.skip = skip; }
public GetAll( ISkip<Filter.Simple.Data.Filter> skip, ILimit<Filter.Simple.Data.Filter> limit, IOrder<Filter.Simple.Data.Filter, ObjectReference> order) { _skip = skip; _limit = limit; _order = order; }
public GetCurrencies( Neo4JConnection connection, ILimit <int, Filter> limit, ISkip <int, Filter> skip) { this.connection = connection; this.limit = limit; this.skip = skip; }
public GetCategoriesByPayee( Neo4JConnection connection, ILimit <int, Filter> limit, ISkip <int, Filter> skip) { this.connection = connection; this.limit = limit; this.skip = skip; }
internal Paged( ISkip <uint, Query.Filter.Filter> skip, ILimit <uint, Query.Filter.Filter> limit) { this.skip = skip; this.limit = limit; this.Data = new List <TSource>(); this.Skip = this.skip.Apply(default);
public Paged( ISkip <int, Query.Filter.Filter> skip, ILimit <int, Query.Filter.Filter> limit) { this.skip = skip; this.limit = limit; this.Data = new List <TSource>(); this.Skip = this.skip.Apply(null); this.Limit = this.limit.Apply(null); }
public GetTransactions( Neo4JConnection connection, ILimit <int, Filter> limit, ISkip <int, Filter> skip, IEnumerable <IWhere <string, Filter> > where) { this.connection = connection; this.limit = limit; this.skip = skip; this.where = where.First(item => item.Name == typeof(Where).FullName); }
public GetAll( ISkip<Filter.Simple.Data.Filter> skip, ILimit<Filter.Simple.Data.Filter> limit, IWhere<Filter.Simple.Data.Filter, SimpleExpression> where, IOrder<Filter.Simple.Data.Filter, ObjectReference> order, IOrderDirection<Filter.Simple.Data.Filter, OrderByDirection> orderDirection) { _skip = skip; _limit = limit; _where = where; _order = order; _orderDirection = orderDirection; }
public ICriteria Skip(int val) { _skip = new Skip(val); return(this); }
public GetAllQuery( ISkip <int, Filter> skip, ILimit <int, Filter> limit) { this.paged = new Paged <dynamic>(skip, limit); }
public TransformFromSingleSkip(ISkip skip) { this.ToSkip = skip; }
internal GetAllQuery(ISkip <uint, Filter> skip, ILimit <uint, Filter> limit) => this.paged = new Paged <dynamic>(skip, limit);