Example #1
0
 public UnitOfWork()
 {
     this.dbContext = new VTorrentsDbContext();
     dbContext.Database.EnsureCreated();
 }
Example #2
0
 public BaseRepository(VTorrentsDbContext dbContext)
 {
     this.dbContext = dbContext;
     Entities       = dbContext.Set <TEntity>();
 }