Example #1
0
        protected void OnButtonPressedAddCity(object sender, EventArgs e)
        {
            FlightsService service = Service.getInstanse().flightService;
            string         city    = TextBoxCity.Text;

            if (service.AddCity(city))
            {
                LoadData();
            }
        }