using ChapterX.Domain.Entities; using ChapterX.Domain.Repositories; using ChapterX.Infrastructure.Data.DataContext; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChapterX.Infrastructure.Repositories { public class WriterRepository : GenericRepository, IWriterRepository { public WriterRepository(ApplicationDbContext context) : base(context) { } } }