MyBookmark/Modules.Library.Application/Commands/Anime/Title/Properties/Name/EditNameCommand.cs
2024-09-23 03:00:50 +03:00

26 lines
995 B
C#

using MediatR;
using Modules.Library.Application.Gateways;
using Modules.Library.Domain.Entities.MediaContent.CommonProperties;
namespace Modules.Library.Application.Commands.Anime.Title.Properties.Name;
public class EditNameCommand : IRequest<Unit>
{
public Guid TitleId { get; set; }
public CommonModels.NameType NameType { get; set; }
public Guid LanguageId { get; set; }
public string Value { get; set; } = default!;
public string NewValue { get; set; } = default!;
}
public class EditNameCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler<EditNameCommand, Unit>
{
public async Task<Unit> Handle(EditNameCommand request, CancellationToken cancellationToken)
{
var title = await titleGateway.GetById(request.TitleId);
title.CommonProperties.SetNameValue(new NameItem((NameType)request.NameType, request.LanguageId, request.Value), request.NewValue);
await titleGateway.Update(title);
return Unit.Value;
}
}