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