Index: ChapterX.Infrastructure/Repositories/StoryRepository.cs
===================================================================
--- ChapterX.Infrastructure/Repositories/StoryRepository.cs	(revision a6e33d1f34c0dbbfff38bfb2c73eea32abfe7cff)
+++ ChapterX.Infrastructure/Repositories/StoryRepository.cs	(revision 877c13c3dd0934c1d31da7988d0d2c2c5925ed55)
@@ -12,30 +12,4 @@
         }
 
-        public override async Task<IEnumerable<Story>> GetAllAsync(CancellationToken cancellationToken = default)
-        {
-            return await _dbSet
-                .Include(s => s.HasGenres)
-                    .ThenInclude(hg => hg.Genre)
-                .Include(s => s.Writer)
-                    .ThenInclude(w => w!.User)
-                .Include(s => s.Likes)
-                .Include(s => s.Comments)
-                .Include(s => s.Chapters)
-                .ToListAsync(cancellationToken);
-        }
-
-        public override async Task<Story?> GetByIdAsync(int id, CancellationToken cancellationToken = default)
-        {
-            return await _dbSet
-                .Include(s => s.HasGenres)
-                    .ThenInclude(hg => hg.Genre)
-                .Include(s => s.Writer)
-                    .ThenInclude(w => w!.User)
-                .Include(s => s.Likes)
-                .Include(s => s.Comments)
-                .Include(s => s.Chapters)
-                .FirstOrDefaultAsync(s => s.Id == id, cancellationToken);
-        }
-
         public async Task<IEnumerable<Story>> GetByWriterIdAsync(int writerId, CancellationToken cancellationToken = default)
         {
