Beispiel #1
0
 public PolicyRepository(ITorrentGreaseDbContext dbContext) : base(dbContext)
 {
 }
Beispiel #2
0
 public RepositoryBase(ITorrentGreaseDbContext dbContext)
 {
     _dbContext = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
 }
Beispiel #3
0
 public TorrentStatisticsRepository(ITorrentGreaseDbContext dbContext) : base(dbContext)
 {
 }
Beispiel #4
0
 public TorrentGreaseDbInitializer(ITorrentGreaseDbContext torrentGreaseDbContext)
 {
     _torrentGreaseDbContext = torrentGreaseDbContext ?? throw new ArgumentNullException(nameof(torrentGreaseDbContext));
 }