Пример #1
0
 private ApplierRetriever(Type stateType)
 {
     isStateTypeSwitchable = GetIfStateSwitchable(stateType);
     this.stateType        = stateType;
     singleInstance        = false;
     applierInstance       = null;
     applierFactory        = null;
 }
Пример #2
0
 public ApplierRetriever(Type stateType, IApplyEventsInternal applier)
     : this(stateType)
 {
     singleInstance  = true;
     applierInstance = applier;
 }