Files
Walleby/Wallet/WalletHostFactory.cs
T
2024-06-29 19:39:34 +01:00

18 lines
426 B
C#

using Toolkit.Foundation;
namespace Wallet;
public class WalletHostFactory(IComponentFactory componentFactory) :
IWalletHostFactory
{
public IComponentHost? Create(string key)
{
if (componentFactory.Create<WalletComponent, WalletConfiguration>($"Wallet:{key}",
new WalletConfiguration()) is IComponentHost host)
{
return host;
}
return default;
}
}