mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
986 B
25 lines
986 B
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
using static ErsatzTV.Application.ProgramSchedules.Mapper; |
|
|
|
namespace ErsatzTV.Application.ProgramSchedules; |
|
|
|
public class GetProgramScheduleByIdHandler : |
|
IRequestHandler<GetProgramScheduleById, Option<ProgramScheduleViewModel>> |
|
{ |
|
private readonly IDbContextFactory<TvContext> _dbContextFactory; |
|
|
|
public GetProgramScheduleByIdHandler(IDbContextFactory<TvContext> dbContextFactory) => |
|
_dbContextFactory = dbContextFactory; |
|
|
|
public async Task<Option<ProgramScheduleViewModel>> Handle( |
|
GetProgramScheduleById request, |
|
CancellationToken cancellationToken) |
|
{ |
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken); |
|
return await dbContext.ProgramSchedules |
|
.SelectOneAsync(ps => ps.Id, ps => ps.Id == request.Id) |
|
.MapT(ProjectToViewModel); |
|
} |
|
}
|
|
|