Пример #1
0
 // Use IQueryBuilderService to get access to the server-side instances of Active Query Builder objects.
 // See the registration of this service in the Startup.cs.
 public QueryResultsDemoController(IQueryBuilderService aqbs, IQueryTransformerService qts, IHostingEnvironment env, IConfiguration config)
 {
     _aqbs   = aqbs;
     _qts    = qts;
     _env    = env;
     _config = config;
 }
 // Use IQueryBuilderService to get access to the server-side instances of Active Query Builder objects.
 // See the registration of this service in the Startup.cs.
 public QueryBuilderController(IQueryBuilderService aqbs, RedisQueryBuilderProvider queryBuilderProvider,
                               IQueryTransformerService qts)
 {
     _aqbs = aqbs;
     _queryBuilderProvider = queryBuilderProvider;
     _qts = qts;
 }
Пример #3
0
 // Use IQueryBuilderService to get access to the server-side instances of Active Query Builder objects.
 // See the registration of this service in the Startup.cs.
 public HomeController(IQueryBuilderService aqbs, IQueryTransformerService qts)
 {
     _aqbs = aqbs;
     _qts  = qts;
 }
 // Use IQueryBuilderService to get access to the server-side instances of Active Query Builder objects.
 // See the registration of this service in the Startup.cs.
 public QueryResultsDemoController(IQueryBuilderService aqbs, IQueryTransformerService qts)
 {
     _aqbs = aqbs;
     _qts  = qts;
 }