* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
18 lines
730 B
C#
18 lines
730 B
C#
using ErsatzTV.Core.Interfaces.Repositories;
|
|
using static ErsatzTV.Application.Configuration.Mapper;
|
|
|
|
namespace ErsatzTV.Application.Configuration;
|
|
|
|
public class GetConfigElementByKeyHandler : IRequestHandler<GetConfigElementByKey, Option<ConfigElementViewModel>>
|
|
{
|
|
private readonly IConfigElementRepository _configElementRepository;
|
|
|
|
public GetConfigElementByKeyHandler(IConfigElementRepository configElementRepository) =>
|
|
_configElementRepository = configElementRepository;
|
|
|
|
public Task<Option<ConfigElementViewModel>> Handle(
|
|
GetConfigElementByKey request,
|
|
CancellationToken cancellationToken) =>
|
|
_configElementRepository.GetConfigElement(request.Key).MapT(ProjectToViewModel);
|
|
}
|