ILifetimeScope
using Castle.Core;
using System;
namespace Castle.MicroKernel.Lifestyle.Scoped
{
public interface ILifetimeScope : IDisposable
{
Burden GetCachedInstance(ComponentModel model, ScopedInstanceActivationCallback createInstance);
}
}