pschelpdesk/Vendor/Prise/Activation/IPluginServiceProvider.cs
2024-11-04 20:45:34 +01:00

14 lines
295 B
C#

using System;
namespace Prise.Activation
{
public interface IBootstrapperServiceProvider : IDisposable
{
object GetHostService(Type type);
}
public interface IPluginServiceProvider : IBootstrapperServiceProvider
{
object GetPluginService(Type type);
}
}