Esempio n. 1
0
        static DebugLogManager()
        {
            //Autofac初始化
            container = LogNewHelper.BuildAutofacContainer();

            using (var scope = container.BeginLifetimeScope())
            {
                _debugLogService = scope.Resolve <ILogsDebugLogService>();
            }
        }
Esempio n. 2
0
 public DebugLogController(ILogsDebugLogService debugLogService)
 {
     _debugLogService = debugLogService;
 }