void queueManager_BatchSendSuccess(object sender, BatchEventArgs e)
 {
     if (BatchSendSuccess != null)
     {
         BatchSendSuccess(this, e);
     }
 }
 void queueManager_BatchSending(object sender, BatchEventArgs e)
 {
     if (BatchSending != null)
     {
         BatchSending(this, e);
     }
 }
 void queueManager_BatchSendFailed(object sender, BatchEventArgs e)
 {
     if (BatchSendFailed != null)
     {
         BatchSendFailed(this, e);
     }
 }
 void queueManager_BatchSendSuccess(object sender, BatchEventArgs e)
 {
     if (BatchSendSuccess != null)
         BatchSendSuccess(this, e);
 }
 void queueManager_BatchSending(object sender, BatchEventArgs e)
 {
     if (BatchSending != null)
         BatchSending(this, e);
 }
 void queueManager_BatchSendFailed(object sender, BatchEventArgs e)
 {
     if (BatchSendFailed != null)
         BatchSendFailed(this, e);
 }