Ejemplo n.º 1
0
        public override void TryHandleTicket(ErrorTicket ticket)
        {
            if (_handler == null)
            {
                throw new ArgumentException("SupportCenterCoR::TryHandleTicket -> Handler not set!");
            }

            _handler.Handle(ticket);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Forward the ticket down the CoR
 /// </summary>
 public void Forward(ErrorTicket ticket)
 {
     _nextHandler?.Handle(ticket);
 }