/// <summary> /// Function for Check refernce based on parameter /// </summary> /// <param name="decTaxId"></param> /// <returns></returns> public bool TaxReferenceCheck(decimal decTaxId) { bool isExist = false; try { isExist = spTax.TaxReferenceCheck(decTaxId); } catch (Exception ex) { MessageBox.Show("TBLL1:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } return(isExist); }