Esempio n. 1
0
 public PartiesRepository(ApplicationDbContext dbContext, IAppCache appCache)
 {
     _dbContext     = dbContext;
     _appCache      = appCache;
     _cacheSettings = MemoryCache.Parties;
 }
Esempio n. 2
0
 public ElectionsRepository(ApplicationDbContext dbContext, IAppCache appCache)
 {
     _dbContext     = dbContext;
     _appCache      = appCache;
     _cacheSettings = MemoryCache.Elections;
 }
Esempio n. 3
0
 public BallotsRepository(ApplicationDbContext dbContext, IAppCache appCache)
 {
     _dbContext     = dbContext;
     _appCache      = appCache;
     _cacheSettings = MemoryCache.Ballots;
 }