Пример #1
0
        public bool AccountLedgerCheckExistenceForTax(string strTaxname)
        {
            bool isStatus = false;

            try
            {
                isStatus = spAccountLedger.AccountLedgerCheckExistenceForTax(strTaxname);
            }
            catch (Exception ex)
            {
                MessageBox.Show("AL1:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(isStatus);
        }