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