MeetingRepository.cs 756 B

1234567891011121314151617181920212223242526
  1. using Microsoft.EntityFrameworkCore;
  2. using MTWorkHR.Core.Entities;
  3. using MTWorkHR.Core.IDto;
  4. using MTWorkHR.Core.IRepositories;
  5. using MTWorkHR.Infrastructure.Entities;
  6. using MTWorkHR.Infrastructure.DBContext;
  7. namespace MTWorkHR.Infrastructure.Repositories
  8. {
  9. public class MeetingRepository : Repository<Meeting>, IMeetingRepository
  10. {
  11. private readonly DbSet<Meeting> dbSet;
  12. public MeetingRepository(HRDataContext context) : base(context)
  13. {
  14. dbSet = context.Set<Meeting>();
  15. }
  16. public async Task<Meeting> GetByIdWithAllChildren(long id)
  17. {
  18. return await dbSet
  19. .Include(x => x.MeetingUsers)
  20. .FirstOrDefaultAsync(x => x.Id == id);
  21. }
  22. }
  23. }