示例#1
0
 private void FrmPaises_Load(object sender, EventArgs e)
 {
     _servicio = new ServiciosPaises();
     try
     {
         _lista = _servicio.GetPaises();
         MostrarDatosEnGrilla();
     }
     catch (Exception exception)
     {
         Console.WriteLine(exception);
         throw;
     }
 }