/// <summary>
        ///
        /// </summary>
        /// <param name="decLedgerId"></param>
        /// <returns></returns>
        public bool AccountGroupwithLedgerId(decimal decLedgerId)
        {
            bool isExist = false;

            try
            {
                isExist = spAccountGroup.AccountGroupwithLedgerId(decLedgerId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("AG20:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(isExist);
        }