public MatchRepository(LoadDbContext loadDbContext,
                        IConfiguration configuration,
                        IOptions <ViewModels.SiteSetttings> siteSetttings,
                        IOptions <ViewModels.TimerSettings> timerSettings)
 {
     _dbContext     = loadDbContext.DbContext;
     _siteSetttings = siteSetttings.Value;
     _timerSettings = timerSettings.Value;
     _domain        = configuration["DomainHosting"];
 }
Beispiel #2
0
 public ImageServerRepository(LoadDbContext loadDbContext)
 {
     _dbContext = loadDbContext.DbContext;
 }
Beispiel #3
0
 public TagRepository(LoadDbContext loadDbContext, IConfiguration configuration)
 {
     _dbContext = loadDbContext.DbContext;
     _domain    = configuration["DomainHosting"];
 }
Beispiel #4
0
 public CategoryRepository(LoadDbContext loadDbContext)
 {
     _dbContext = loadDbContext.DbContext;
 }
Beispiel #5
0
 public CrawlLinkRepository(LoadDbContext loadDbContext)
 {
     _dbContext = loadDbContext.DbContext;
 }
 public CodePlugInRepository(LoadDbContext loadDbContext)
 {
     _dbContext = loadDbContext.DbContext;
 }