示例#1
0
        public AccountLedgerInfo AccountLedgerView(decimal decLedgerId)
        {
            AccountLedgerInfo infoAccountLedger = new AccountLedgerInfo();

            try
            {
                infoAccountLedger = spAccountLedger.AccountLedgerView(decLedgerId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("AL14:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(infoAccountLedger);
        }