示例#1
0
        public bool AccountLedgerCheckExistenceForSalesman(String strLedgerName, decimal decLedgerId)
        {
            bool inChek = false;

            try
            {
                inChek = spAccountLedger.AccountLedgerCheckExistenceForSalesman(strLedgerName, decLedgerId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("AL31:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(inChek);
        }