From 57e1796bf33346c3992edde1a63f635cfae0def9 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期五, 22 十一月 2024 01:33:14 +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