/// <summary>
 /// Rejection Arrived
 /// </summary>
 /// <param name="rejection"></param>
 private void RejectionArrived(Rejection rejection)
 {
     if (Logger.IsInfoEnabled)
     {
         Logger.Info("Sending Rejection To OEE", _type.FullName, "RejectionArrived");
     }
     try
     {
         _communicationController.PublishOrderRejection(rejection);
     }
     catch (Exception exception)
     {
         Logger.Error(exception, _type.FullName, "RejectionArrived");
     }
 }