/// <summary>
 /// Function to check the print after save settings status
 /// </summary>
 /// <returns></returns>
 public bool PrintAfetrSave()
 {
     TransactionsGeneralFill TransactionsGeneralFillObj = new TransactionsGeneralFill();
     bool isTick = false;
     try
     {
         isTick = TransactionsGeneralFillObj.StatusOfPrintAfterSave();
     }
     catch (Exception ex)
     {
         MessageBox.Show("SJ:54" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     return isTick;
 }