예제 #1
0
 public static void SetModuleManage(ModuleManage mrg)
 {
     if (mrg == null)
     {
         throw new ArgumentNullException(nameof(mrg));
     }
     _current = mrg;
 }
예제 #2
0
 public HostModuleManage(ModuleManage moduleManage) : this()
 {
     this.Module = moduleManage ?? throw new ArgumentNullException(nameof(moduleManage));
 }
예제 #3
0
 internal DefualtHostModuleManage(IHostModule hostModule, ModuleManage moduleManage) : base(moduleManage)
 {
     this._hostModule = hostModule;
 }