using Microsoft.EntityFrameworkCore; using MTWorkHR.Core.Entities; using MTWorkHR.Core.IDto; using MTWorkHR.Core.IRepositories; using MTWorkHR.Infrastructure.Entities; using MTWorkHR.Infrastructure.DBContext; using MTWorkHR.Core.Entities.User; namespace MTWorkHR.Infrastructure.Repositories { public class OrderRequestRepository : Repository, IOrderRequestRepository { private readonly DbSet dbSet; public OrderRequestRepository(HRDataContext context) : base(context) { dbSet = context.Set(); } public async Task GetByIdWithAllChildren(long id) { return await dbSet .Include(x => x.OrderType) .FirstOrDefaultAsync(x => x.Id == id); } } }