11 lines
380 B
C#
11 lines
380 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Toolkit.Foundation;
|
|
|
|
public interface IComponentFactory
|
|
{
|
|
IComponentHost? Create<TComponent, TConfiguration>(string name,
|
|
TConfiguration configuration, Action<IServiceCollection>? servicesDelegate = null)
|
|
where TComponent : IComponent
|
|
where TConfiguration : ComponentConfiguration, new();
|
|
} |