示例#1
0
 private void AcrualizarToolStripButton_Click(object sender, EventArgs e)
 {
     try
     {
         _lista = _repositorio.GetLista();
         MostrarDatosEnGrilla();
     }
     catch (Exception exception)
     {
         Console.WriteLine(exception);
     }
 }
示例#2
0
 private void FrmTriangulo_Load(object sender, EventArgs e)
 {
     _repositorio = new RepositorioTriangulo();
     try
     {
         _lista = _repositorio.GetLista();
         MostrarDatosEnGrilla();
     }
     catch (Exception exception)
     {
         Console.WriteLine(exception);
     }
 }