ISubSystem
A subsystem is used by the MicroKernel to deal
with a specific concern.
namespace Castle.MicroKernel
{
public interface ISubSystem
{
void Init(IKernelInternal kernel);
void Terminate();
}
}