using MediatR; using Modules.Library.Application.Gateways; using Modules.Library.Domain.Entities.MediaContent.Items.Anime; namespace Modules.Library.Application.Commands.Anime.Episode.Properties.Genre; public class SetGenreProportionCommand : IRequest { public Guid TitleId { get; set; } public Guid SeasonId { get; set; } public Guid EpisodeId { get; set; } public Guid GenreId { get; set; } public decimal? Proportion { get; set; } public decimal? NewProportion { get; set; } } public class SetGenreProportionCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler { public async Task Handle(SetGenreProportionCommand request, CancellationToken cancellationToken) { var title = await titleGateway.GetById(request.TitleId); var season = title.Items.OfType().FirstOrDefault(q => q.Id == request.SeasonId) ?? throw new Exception("Season not found"); var episode = season.Episodes.FirstOrDefault(q => q.Id == request.EpisodeId) ?? throw new Exception("Episode not found"); episode.CommonProperties.SetGenreProportion(request.GenreId, request.NewProportion); await titleGateway.Update(title); return Unit.Value; } }