Files
WebNovelPortal/DBConnection/Repositories/ChapterRepository.cs
littlefoot ceb8a0db8e
All checks were successful
continuous-integration/drone/push Build is passing
Refactor and novel18 support (added cookie support in general to AbstractScraper.cs
2022-07-20 22:04:13 -04:00

18 lines
473 B
C#

using DBConnection.Contexts;
using DBConnection.Repositories.Interfaces;
using Microsoft.EntityFrameworkCore;
using Common.Models.DBDomain;
namespace DBConnection.Repositories;
public class ChapterRepository : BaseRepository<Chapter>, IChapterRepository
{
public ChapterRepository(AppDbContext dbContext) : base(dbContext)
{
}
protected override IQueryable<Chapter> GetAllIncludedQueryable()
{
return DbContext.Chapters.AsQueryable();
}
}