Beispiel #1
0
 private void TiposForm_Load(object sender, System.EventArgs e)
 {
     servicio = new ServicioTipos();
     try
     {
         lista = servicio.GetLista();
         MostrarDatosEnGrilla();
     }
     catch (Exception exception)
     {
         Helper.MostrarMensaje(this, exception.Message, TipoDeCuadro.Error);
     }
 }
Beispiel #2
0
 private void LoadRegistros()
 {
     lista = servicio.GetLista();
     MostrarDatosEnGrilla();
 }