From 024b9947f75a2a73745fc4eded6f7c6bfd1e7f6f Mon Sep 17 00:00:00 2001
From: YangYuGang <1378265336@qq.com>
Date: 星期二, 25 三月 2025 09:42:12 +0800
Subject: [PATCH] 一些更改

---
 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