using NG_2023_Kanban.DataLayer.DbStartup; using NG_2023_Kanban.DataLayer.Entities; using NG_2023_Kanban.DataLayer.Interfaces; namespace NG_2023_Kanban.DataLayer.Repositories; public class CommentRepository : BaseRepository, ICommentRepository { public CommentRepository(DatabaseContext context) : base(context) { } }