Files
Walleby/Wallet/ItemCommandHeaderViewModel.cs
T
TheXamlGuy 046dafc179 wip
2024-06-12 23:04:22 +01:00

32 lines
933 B
C#

using Toolkit.Foundation;
namespace Wallet;
public partial class ItemCommandHeaderViewModel(IServiceProvider provider,
IServiceFactory factory,
IMediator mediator,
IPublisher publisher,
ISubscriber subscriber,
IDisposer disposer,
IContentTemplate template) :
ObservableCollection(provider, factory, mediator, publisher, subscriber, disposer),
INotificationHandler<NotifyEventArgs<ItemCommandHeaderCollection>>
{
public IContentTemplate Template { get; set; } = template;
public Task Handle(NotifyEventArgs<ItemCommandHeaderCollection> args)
{
if (args.Sender is ItemCommandHeaderCollection commandCollection)
{
Clear(args =>
{
foreach (IDisposable command in commandCollection)
{
args.Add(command);
}
});
}
return Task.CompletedTask;
}
}