protected void Button3_Click(object sender, EventArgs e)
 {
     try
     {
         locSearchPresenter objLocPre = new locSearchPresenter();
         var itemList = objLocPre.getAutoSuggestLocation("FR", "Paris");
         TextBox3.Text = itemList.Count > 0 ? "LocationSearch has been successfully Tested" : "No data found. kindly check the LocationSearch service once again.";
     }
     catch (Exception ex)
     {
         TextBox3.Text = ex.Message;
     }
 }