26 lines
711 B
C#
26 lines
711 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Wallet;
|
|
|
|
public class FavouriteItemHandler(IDecoratorService<Item<(Guid, string)>> decoratorService,
|
|
IMediator mediator,
|
|
IPublisher publisher) :
|
|
INotificationHandler<FavouriteEventArgs<Item>>
|
|
{
|
|
public async Task Handle(FavouriteEventArgs<Item> args)
|
|
{
|
|
try
|
|
{
|
|
if (decoratorService.Service is Item<(Guid, string)> item)
|
|
{
|
|
(Guid id, string name) = item.Value;
|
|
await mediator.Handle<UpdateEventArgs<(Guid, int)>, bool>(new UpdateEventArgs<(Guid, int)>((id, 1)));
|
|
|
|
publisher.Publish(Changed.As<Item>());
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
} |