public ContextControllerKeyedFilterEntryNoInit(
     ContextControllerKeyedImpl callback,
     IntSeqKey controllerPath,
     object[] parentPartitionKeys,
     ContextControllerDetailKeyedItem item)
     : base(callback, controllerPath, item, parentPartitionKeys)
 {
     Start(item.FilterSpecActivatable);
 }
Exemplo n.º 2
0
 public ContextControllerKeyedFilterEntry(
     ContextControllerKeyedImpl callback,
     IntSeqKey controllerPath,
     ContextControllerDetailKeyedItem item,
     object[] parentPartitionKeys)
 {
     this.callback = callback;
     this.controllerPath = controllerPath;
     this.item = item;
     this.parentPartitionKeys = parentPartitionKeys;
 }
 public ContextControllerKeyedFilterEntryWInit(
     ContextControllerKeyedImpl callback,
     IntSeqKey controllerPath,
     ContextControllerDetailKeyedItem item,
     object[] parentPartitionKeys,
     ContextConditionDescriptorFilter initCond)
     : base(callback, controllerPath, item, parentPartitionKeys)
 {
     this.initCond = initCond;
     Start(initCond.FilterSpecActivatable);
 }