From d0f01f571918ae942349068776fa7fb70f3ab5cd Mon Sep 17 00:00:00 2001
From: hutongqing <hutongqing@hnkhzn.com>
Date: 星期三, 28 八月 2024 16:20:18 +0800
Subject: [PATCH] 更新设备信息表从表导入问题

---
 WIDESEAWCS_Server/WIDESEAWCS_Core/Extensions/AutofacModuleRegister.cs |   50 --------------------------------------------------
 1 files changed, 0 insertions(+), 50 deletions(-)

diff --git a/WIDESEAWCS_Server/WIDESEAWCS_Core/Extensions/AutofacModuleRegister.cs b/WIDESEAWCS_Server/WIDESEAWCS_Core/Extensions/AutofacModuleRegister.cs
index b4c0368..62dc38e 100644
--- a/WIDESEAWCS_Server/WIDESEAWCS_Core/Extensions/AutofacModuleRegister.cs
+++ b/WIDESEAWCS_Server/WIDESEAWCS_Core/Extensions/AutofacModuleRegister.cs
@@ -17,58 +17,8 @@
 {
     public class AutofacModuleRegister : Autofac.Module
     {
-        //private static readonly ILog log = LogManager.GetLogger(typeof(AutofacModuleRegister));
         protected override void Load(ContainerBuilder builder)
         {
-            //var basePath = AppContext.BaseDirectory;
-
-            //var cacheType = new List<Type>();
-
-            //builder.RegisterType<LogAOP>();
-            //cacheType.Add(typeof(LogAOP));
-
-            //builder.RegisterGeneric(typeof(RepositoryBase<>)).As(typeof(IRepository<>)).InstancePerDependency();//娉ㄥ唽浠撳偍
-            //builder.RegisterGeneric(typeof(ServiceBase<,>)).As(typeof(IService<>)).InstancePerDependency();//娉ㄥ唽鏈嶅姟
-
-            //Type baseType = typeof(IDependency);
-
-            //List<RuntimeLibrary> compilationLibrary = DependencyContext.Default
-            //        .RuntimeLibraries
-            //        .Where(x => !x.Serviceable
-            //        && x.Type == "project" && ((x.Name.EndsWith("Repository")) || (x.Name.EndsWith("Service"))))
-            //        .ToList();
-            //List<Assembly> assemblyList = new List<Assembly>();
-            //foreach (var library in compilationLibrary)
-            //{
-            //    try
-            //    {
-            //        string path = Path.Combine(basePath, $"{library.Name}.dll");
-            //        if (!File.Exists(path))
-            //        {
-            //            var msg = $"{library.Name}.dll涓㈠け锛屽洜涓洪」鐩В鑰︿簡锛屾墍浠ラ渶瑕佸厛F6缂栬瘧锛屽啀F5杩愯锛岃妫�鏌� bin 鏂囦欢澶癸紝骞舵嫹璐濄��";
-            //            //log.Error(msg);
-            //            throw new Exception(msg);
-            //        }
-            //        assemblyList.Add(Assembly.LoadFrom(path));
-            //    }
-            //    catch (Exception ex)
-            //    {
-            //        Console.WriteLine(library.Name + ex.Message);
-            //    }
-            //}
-            //builder.RegisterAssemblyTypes(assemblyList.ToArray())
-            //    .Where(x => !x.IsAbstract /*&& baseType.IsAssignableFrom(x)*/)
-            //    .AsImplementedInterfaces()
-            //    .PropertiesAutowired()
-            //    .InstancePerDependency()
-            //    .EnableInterfaceInterceptors()
-            //    .InterceptedBy(cacheType.ToArray());
-
-            //builder.RegisterType<UnitOfWorkManage>().As<IUnitOfWorkManage>()
-            //    .AsImplementedInterfaces()
-            //    .InstancePerLifetimeScope()
-            //    .PropertiesAutowired();
-
             var basePath = AppContext.BaseDirectory;
             var cacheType = new List<Type>();
 

--
Gitblit v1.9.3