コード例 #1
0
        public String CreditOrDebitChecking(decimal decLedgerId)
        {
            string strNature = string.Empty;

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