From f0d620633b67d78c45d39ba3e91ba84c4fed0aa4 Mon Sep 17 00:00:00 2001
From: Rodney Chen <rodney.chen@hotmail.com>
Date: 星期五, 11 四月 2025 19:39:13 +0800
Subject: [PATCH] 优化了U9接口逻辑

---
 Tiger.Business/BizContext.cs |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/Tiger.Business/BizContext.cs b/Tiger.Business/BizContext.cs
index f864228..d4fdd5a 100644
--- a/Tiger.Business/BizContext.cs
+++ b/Tiger.Business/BizContext.cs
@@ -92,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