/// <summary>
 /// Function to check the printaftersave status in settings
 /// </summary>
 /// <returns></returns>
 public bool PrintAfetrSave()
 {
     bool isTick = false;
     TransactionsGeneralFillBll transactionGeneralFillObj = new TransactionsGeneralFillBll();
     try
     {
         isTick = transactionGeneralFillObj.StatusOfPrintAfterSave();
     }
     catch (Exception ex)
     {
         MessageBox.Show("SQ:23" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     return isTick;
 }