TeamRepository.cs 733 B

123456789101112131415161718192021222324252627
  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 TeamRepository : Repository<Team>, ITeamRepository
  10. {
  11. private readonly DbSet<Team> dbSet;
  12. public TeamRepository(HRDataContext context) : base(context)
  13. {
  14. dbSet = context.Set<Team>();
  15. }
  16. public async Task<Team> GetByIdWithAllChildren(long id)
  17. {
  18. return await dbSet
  19. .Include(x => x.TeamUsers)
  20. .FirstOrDefaultAsync(x => x.Id == id);
  21. }
  22. }
  23. }