From 74ff49e94dd827d4f3b2c2e44c8b6ef3c16c1965 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期四, 12 九月 2024 00:50:04 +0800 Subject: [PATCH] Merge branch 'master' of http://47.115.28.255:8110/r/TigerClouds-Tech/Server/TigerApi6_2024 --- Tiger.Business/BizContext.cs | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Tiger.Business/BizContext.cs b/Tiger.Business/BizContext.cs index de6d323..d4fdd5a 100644 --- a/Tiger.Business/BizContext.cs +++ b/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)); + } } } \ No newline at end of file -- Gitblit v1.9.3