using API.Entities; using API.Interfaces.Repositories; using AutoMapper; using Microsoft.EntityFrameworkCore; namespace API.Data { public class ChapterRepository : IChapterRepository { private readonly DataContext _context; public ChapterRepository(DataContext context) { _context = context; } public void Update(Chapter chapter) { _context.Entry(chapter).State = EntityState.Modified; } // TODO: Move over Chapter based queries here } }