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