Beispiel #1
0
 public bool cargarDataTabla()
 {
     try
     {
         tablaLaptops          = reporteDA.ListarCorteAlquiler();
         dgvLaptops.DataSource = tablaLaptops;
         dgvLaptops.Refresh();
         label1.Text = $"CANTIDAD REGISTRO: {vista.RowCount.ToString()}";
     }
     catch (Exception e)
     {
         //MessageBox.Show(e.Message);
     }
     return(true);
 }