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