using AutobusApi.Application.Common.Exceptions; using AutobusApi.Application.Common.Interfaces; using AutoMapper; using AutoMapper.QueryableExtensions; using MediatR; using Microsoft.EntityFrameworkCore; namespace AutobusApi.Application.Routes.Queries.GetRoute; public class GetRouteQueryHandler : IRequestHandler { private readonly IApplicationDbContext _dbContext; private readonly IMapper _mapper; public GetRouteQueryHandler( IApplicationDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; } public async Task Handle( GetRouteQuery request, CancellationToken cancellationToken) { var route = await _dbContext.Routes .ProjectTo(_mapper.ConfigurationProvider) .SingleOrDefaultAsync(c => c.Id == request.Id); if (route == null) { throw new NotFoundException(); } return route; } }