private void LoadDataTolvLoanInterestedRate()
 {
     NewLoanInterestedKeyRepository facade = new NewLoanInterestedKeyRepository();
     var db = facade.GetAll();
     lvLoanInterestedRate.DataSource = db.ToList();
     lvLoanInterestedRate.DataBind();
 }
        private void LoadInterestKey(string selectedid)
        {
            NewLoanInterestedKeyRepository facade = new NewLoanInterestedKeyRepository();
            var src = facade.GetAll().ToList();
            Util.LoadData2RadCombo(rcbDepositeRate, src, "Id", "LoanInterest_Key", "-Select Interest Key-", true);

            if (!String.IsNullOrEmpty(selectedid))
            {
                rcbDepositeRate.SelectedValue = selectedid;
            }
        }