Beispiel #1
0
 public ExceptionHandler GetHandler(ExceptionHandlerFactoryContext context)
 {
     FactoryContexts.Add(context);
     var handler = new SupportExceptionHandler();
     Handlers.Add(handler);
     return handler.Handle;
 }
        public ConditionHandler GetHandler(ConditionHandlerFactoryContext context)
        {
            FactoryContexts.Add(context);
            var handler = new SupportConditionHandler();

            Handlers.Add(handler);
            return(handler.Handle);
        }