private void UpdateData()
        {
            if (this.comboNames.SelectedValue != null)
            {
                int id = int.Parse(this.comboNames.SelectedValue.ToString());

                HospitalMaster row = BaseMasterModel.Find <HospitalMaster>(this.m_db.Conn, id);

                SetData(row);
            }
        }
        private void UpdateData()
        {
            if (this.comboNames.SelectedValue != null)
            {
                int id = GetComboSelectedValueAsInt(comboNames);

                SectionMaster row = BaseMasterModel.Find <SectionMaster>(this.m_db.Conn, id);

                SetData(row);
            }
        }