26 lines
1021 B
C#
26 lines
1021 B
C#
using MediatR;
|
|
using Modules.Library.Application.Gateways;
|
|
using Modules.Library.Domain.Entities.MediaContent.Items.Anime;
|
|
|
|
namespace Modules.Library.Application.Commands.Anime.Season.Properties;
|
|
|
|
public class SetEstimatedReleaseDateCommand : IRequest<Unit>
|
|
{
|
|
public Guid TitleId { get; set; }
|
|
public Guid SeasonId { get; set; }
|
|
public DateTimeOffset? Value { get; set; }
|
|
|
|
}
|
|
|
|
public class SetEstimatedReleaseDateCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler<SetEstimatedReleaseDateCommand, Unit>
|
|
{
|
|
public async Task<Unit> Handle(SetEstimatedReleaseDateCommand request, CancellationToken cancellationToken)
|
|
{
|
|
var title = await titleGateway.GetById(request.TitleId);
|
|
var season = title.Items.OfType<AnimeSeason>().FirstOrDefault(q => q.Id == request.SeasonId) ??
|
|
throw new Exception("Season not found");
|
|
season.CommonProperties.SetEstimatedReleaseDate(request.Value);
|
|
await titleGateway.Update(title);
|
|
return Unit.Value;
|
|
}
|
|
} |