Esempio n. 1
0
 private void TipoDeDocForm_Load(object sender, EventArgs e)
 {
     _servicio = new ServiciosTipoDeDocumento();
     try
     {
         _lista = _servicio.GetTipoDeDocumentos();
         MostrarDatosEnGrilla();
     }
     catch (Exception exception)
     {
         Console.WriteLine(exception);
         throw;
     }
 }