using Gs.Toolbox;
|
|
namespace Gs.Toolbox
|
{
|
public class InjectTypeContext
|
{
|
public List<Type> types { get; }
|
public InjectTypeContext()
|
{
|
types = new List<Type>();
|
types.Add(typeof(ITransient));
|
types.Add(typeof(ISingleton));
|
types.Add(typeof(IScope));
|
}
|
}
|
}
|