2023-02-10 18:24:24 +01:00
|
|
|
namespace Application.Game.Card.Write;
|
|
|
|
|
|
|
|
public record WriteCoinCommand(long CardId, string Data) : IRequestWrapper<string>;
|
|
|
|
|
2023-02-16 17:38:01 +01:00
|
|
|
public class WriteCoinCommandHandler : RequestHandlerBase<WriteCoinCommand, string>
|
2023-02-10 18:24:24 +01:00
|
|
|
{
|
|
|
|
public WriteCoinCommandHandler(ICardDependencyAggregate aggregate) : base(aggregate) {}
|
|
|
|
|
|
|
|
public override Task<ServiceResult<string>> Handle(WriteCoinCommand request, CancellationToken cancellationToken)
|
|
|
|
{
|
|
|
|
// TODO: Add proper implementation
|
|
|
|
return Task.FromResult(new ServiceResult<string>(request.Data));
|
|
|
|
}
|
|
|
|
}
|