コード例 #1
0
 public ContextControllerCategory(
     ContextManagerRealization realization,
     ContextControllerCategoryFactory factory)
     : base(realization)
 {
     this.factory = factory;
 }
コード例 #2
0
 public ContextControllerCategoryImpl(
     ContextManagerRealization realization,
     ContextControllerCategoryFactory factory)
     : base(realization, factory)
 {
     if (factory.FactoryEnv.IsRoot) {
         CategorySvc = new ContextControllerCategorySvcLevelOne();
     }
     else {
         CategorySvc = new ContextControllerCategorySvcLevelAny();
     }
 }