private void BatchProcessNonTCS()
 {
     try
     {
         CommonClass.ClsBatches clsBatch = new CommonClass.ClsBatches();
         clsBatch.NonTCSBatchRun();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 private void TCSReversedFeedBack()
 {
     try
     {
         CommonClass.ClsBatches clsBatch = new CommonClass.ClsBatches();
         clsBatch.TCSReversedFeedBack();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 private void BatchProcessGeneral()
 {
     try
     {
         CommonClass.ClsBatches clsBatch = new CommonClass.ClsBatches();
         clsBatch.GeneralBatchRun();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }