예제 #1
0
        public async void CleanerServiceCount()
        {
            try
            {
                var data = await service.CleanerCount(Settings.CleanerId);

                serviceLbl.Text         = data + " " + "Completed Cleans";
                countactivity.IsEnabled = false;
                countactivity.IsRunning = false;
                countactivity.IsVisible = false;
            }
            catch (Exception)
            {
                await DisplayAlert("Hello" + " " + Settings.UserName, "We trust you are doing fine", "Sure");
            }
        }