예제 #1
0
 public async void LoadData()
 {
     try
     {
         IsBusy   = true;
         Clientes = new ObservableCollection <Cliente>(await srv.GetClientes());
     }
     finally
     {
         IsBusy = false;
     }
 }