Exemplo n.º 1
0
 async Task ExecuteSearch()
 {
     adviseList = await CosmosAdviceService.SearchunSolvedAdvises(cname);
 }
        async Task ExecuteUpdate()
        {
            await CosmosAdviceService.UpdateAdvise(ID);

            await DisplayAlert("SUCCESS", "Thanks for your reply", "OK");
        }
Exemplo n.º 3
0
        async Task ExecuteResponse()
        {
            await CosmosAdviceService.UpdateAdvise(advise);

            await DisplayAlert("SUCCESS", "operation success", "OK");
        }
Exemplo n.º 4
0
 async Task ExecuteInsert()
 {
     await CosmosAdviceService.InsertAdvise(advise);
 }