TaskAttachmentRepository.cs 450 B

1234567891011121314151617
  1. using Microsoft.EntityFrameworkCore;
  2. using MTWorkHR.Core.Entities;
  3. using MTWorkHR.Core.IDto;
  4. using MTWorkHR.Core.IRepositories;
  5. using MTWorkHR.Infrastructure.DBContext;
  6. namespace MTWorkHR.Infrastructure.Repositories
  7. {
  8. public class UserTaskAttachmentRepository : Repository<UserTaskAttachment>, IUserTaskAttachmentRepository
  9. {
  10. public UserTaskAttachmentRepository(HRDataContext context) : base(context)
  11. {
  12. }
  13. }
  14. }