服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-01-21 fab78d94b10f66cf161b282e5f31d06e26abb4e4
Tiger.Business/BizContext.cs
@@ -6,7 +6,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Tiger.Business.WMS.Transaction;
using Tiger.IBusiness;
namespace Tiger.Business
@@ -93,5 +92,10 @@
        {
            return BizContext.Container.Resolve<T>();
        }
        public static dynamic Resolve(string typeFullName)
        {
            return BizContext.Container.Resolve(System.Type.GetType(typeFullName, true));
        }
    }
}