Example #1
0
        private void DisplayCounty(int townId)
        {
            Facade.IReferenceData facRefData = new Facade.ReferenceData();
            DataSet dsCounty = facRefData.GetCountyForTownId(townId);

            txtCounty.Text = dsCounty.Tables[0].Rows[0]["Description"].ToString();
            lblTownId.Text = townId.ToString();
            m_townId       = townId;
            m_countyName   = txtCounty.Text;
        }