Esempio n. 1
0
 public SupportCenterCoR(ISupportCoRConfiguration configurator)
 {
     _configurator = configurator;
     _handler      = _configurator?.SetupSupportCoR(this);
 }
Esempio n. 2
0
 protected SupportHandlerBase(ISupportHandler nextHandler = null)
 {
     _nextHandler = nextHandler;
 }
 public TranslatorServiceAdapter(ISupportHandler nextHandler) : base(nextHandler)
 {
     _translatorService = new TranslatorService();
 }
 public SupportHandlerAggregation(ISupportAction actualHandler, ISupportHandler nextHandler = null) : base(nextHandler)
 {
     _actualHandler = actualHandler ?? throw new ArgumentException($"SupportHandlerAggregation constructor: Caller must supply an ISupport implementation");
 }