You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
667 B

using Znyc.Cloudcar.Admin.Commons.Core.App;
namespace Znyc.Cloudcar.Admin.Commons.IoC
{
/// <summary>
/// IOC 容器
/// </summary>
public class IoCContainer
{
/// <summary>
/// 从容器中获取对象 Resolve an instance of the default requested type from the container
/// <para>
/// 该方法即将废弃,请使用App.GetService<T>();
/// </para>
/// </summary>
/// <typeparam name="T">类型</typeparam>
/// <returns></returns>
public static T Resolve<T>() where T : class
{
return App.GetService<T>();
}
}
}