/// <summary>
        /// account group combo fill function
        /// </summary>
        public void cmbComboFill()
        {
            try
            {
                AccountLedgerBll bllAccountLedger = new AccountLedgerBll();
                List<DataTable> ListObj = new List<DataTable>();
                ListObj = bllAccountLedger.MultipleAccountLedgerComboFill();
                cmbAccountGroup.DataSource = ListObj[0];
                cmbAccountGroup.ValueMember = "accountGroupId";
                cmbAccountGroup.DisplayMember = "accountGroupName";
            }
            catch (Exception ex)
            {
                MessageBox.Show("MAL1:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);

            }
        }