Ejemplo n.º 1
0
        private async void NextBtnClick_Tapped(object sender, EventArgs e)
        {
            Debug.WriteLine("next button {0} {1}", pickupPosition.Latitude, pickupPosition.Longitude);
            IsLoading = true;
            WebConnection webconnection = new WebConnection();

            webconnection.On_ResponseRecived += Webconnection_On_ResponseRecived;
            await webconnection.GetVechicleInfo("SUV", "some locaton");
        }
Ejemplo n.º 2
0
        private async Task DrivergetBasePriceAsync()
        {
            Debug.WriteLine("next button {0} {1}", pickupPosition.Latitude, pickupPosition.Longitude);
            IsLoading = true;
            WebConnection webconnection = new WebConnection();

            webconnection.On_ResponseRecived += Webconnection_BasePrice_ResponseRecived;
            await webconnection.GetVechicleInfo("SUV", "some locaton");
        }