public TranslationDataService(ILogger <TranslationDataService> logger, ISQLService sqlService)
        {
            _logger     = logger;
            _sqlService = sqlService;

            _limit = 100;
        }
示例#2
0
        //public CustomStateProvider(ILogger<CustomStateProvider> logger, IConfiguration config, ILocalStorageService localStorage)

        public CustomStateProvider(ILogger <CustomStateProvider> logger, IConfiguration config, ISQLService sqlService, ILocalStorageService localStorage)
        {
            _logger       = logger;
            _config       = config;
            _sqlService   = sqlService;
            _localStorage = localStorage;
        }
示例#3
0
 public SqlStoredProcedureQueryHandler(IBusClient busClient,
                                       ISQLService sqlService,
                                       ILogger <SqlStoredProcedureQueryHandler> logger)
 {
     _busClient  = busClient;
     _sqlService = sqlService;
     _logger     = logger;
 }
示例#4
0
 public SqlStatementQueryHandler(IBusClient busClient,
                                 ISQLService sqlService,
                                 ILogger <SqlStatementQueryHandler> logger)
 {
     _busClient  = busClient;
     _sqlService = sqlService;
     _logger     = logger;
 }
示例#5
0
 public RebuildIndicesHandler(AzureLuceneConfiguration azureLuceneConfiguration, ISQLService SQLservice
                              , ILuceneReaderService luceneReaderService, ILogger <RebuildIndicesHandler> logger)
 {
     AzureLuceneConfiguration = azureLuceneConfiguration;
     _logger              = logger;
     _SQLservice          = SQLservice;
     _luceneReaderService = luceneReaderService;
 }
示例#6
0
 public DickinsonBrosSQLRunnerDBService
 (
     IOptions <DickinsonBrosDBOptions> dickinsonBrosDBOptions,
     ISQLService sqlService
 )
 {
     _connectionString = dickinsonBrosDBOptions.Value.ConnectionString;
     _sqlService       = sqlService;
 }
 public IntegreationTestDBService
 (
     ISQLService sqlService,
     IOptions <IntegrationTestServiceOptions> options
 )
 {
     _sqlService = sqlService;
     _integrationTestServiceOptions = options.Value;
 }
示例#8
0
 public AzureInMemoryCachedLuceneReader(IMemoryCache memoryCache,
                                        ISQLService SQLservice,
                                        AzureLuceneConfiguration azureLuceneConfiguration,
                                        ILogger <AzureInMemoryCachedLuceneReader> logger)
 {
     _cache = memoryCache;
     _azureLuceneConfiguration = azureLuceneConfiguration;
     _SQLservice = SQLservice;
     _logger     = logger;
 }
示例#9
0
 public DbWorkerController(ISQLService sqlService)
 {
     _sqlService = sqlService;
 }
示例#10
0
 public ListPresentationViewModel(ISQLService sqlService)
 {
     _sqlSvc        = sqlService;
     MenuCollection = WrapConverter.ConvertToWrapperClass(_sqlSvc.MenuItemGetAll(), this);
 }
示例#11
0
 public MBaseService(ISQLService sQLService)
 {
     this.sQLService = sQLService;
 }
示例#12
0
 public AccountDBService(IOptions <DickinsonBrosDB> dickinsonBrosDB, ISQLService sqlService)
 {
     _dickinsonBrosDB = dickinsonBrosDB.Value;
     _sqlService      = sqlService;
 }
示例#13
0
 public MBaseService(ISQLService sQLService, IAs400Service as400Service)
 {
     this.sQLService   = sQLService;
     this.as400Service = as400Service;
 }