20 lines
638 B
C#
20 lines
638 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Wallet;
|
|
|
|
public partial class AllNavigationViewModel(IServiceProvider provider,
|
|
IServiceFactory factory, IMediator mediator,
|
|
IPublisher publisher, ISubscriber subscriber, IDisposer disposer, int key, string value) :
|
|
FilterNavigationViewModel(provider, factory, mediator, publisher, subscriber, disposer, key, value),
|
|
INotificationHandler<NotifyEventArgs<Item<int>>>
|
|
{
|
|
//public Task Handle(NotifyEventArgs<Item<int>> args)
|
|
//{
|
|
// if (args.Sender is Item<int> item)
|
|
// {
|
|
// Key = item.Value;
|
|
// }
|
|
|
|
// return Task.CompletedTask;
|
|
//}
|
|
} |