Ejemplo n.º 1
0
 public CCBHouesCrawler(HouseDapper houseDapper, IOptions <APPConfiguration> configuration,
                        ConfigDapper configDapper)
 {
     this.houseDapper  = houseDapper;
     this.config       = configuration.Value;
     this.configDapper = configDapper;
 }
 public HouseDapper(IOptions <APPConfiguration> configuration, RedisService redis,
                    ElasticsearchService elasticsearchService)
 {
     this.configuration        = configuration.Value;
     this.redis                = redis;
     this.elasticsearchService = elasticsearchService;
 }
 public TodayHouseDashboardJob(EmailService emailService, IOptions <APPConfiguration> configuration,
                               HouseDapper houseDapper)
 {
     this.emailService  = emailService;
     this.configuration = configuration.Value;
     this.houseDapper   = houseDapper;
 }
Ejemplo n.º 4
0
 public HouseDapper(IOptions <APPConfiguration> configuration, RedisService redis)
 {
     _configuration = configuration.Value;
     this._redis    = redis;
 }
Ejemplo n.º 5
0
 public HouseDashboardJob(EmailService emailService, IOptions <APPConfiguration> configuration)
 {
     this.emailService  = emailService;
     this.configuration = configuration.Value;
 }
Ejemplo n.º 6
0
 public ConfigDapper(IOptions <APPConfiguration> configuration)
 {
     this.configuration = configuration.Value;
 }
Ejemplo n.º 7
0
 public RedisService(IOptions <APPConfiguration> configuration)
 {
     _configuration = configuration.Value;
 }