using Microsoft.EntityFrameworkCore; using MTWorkHR.Core.Entities; using MTWorkHR.Core.IDto; using MTWorkHR.Core.IRepositories; using MTWorkHR.Infrastructure.DBContext; namespace MTWorkHR.Infrastructure.Repositories { public class UserTaskAttachmentRepository : Repository, IUserTaskAttachmentRepository { public UserTaskAttachmentRepository(HRDataContext context) : base(context) { } } }