private void AsociadoDetalle_Activated(object sender, EventArgs e) { decimal aportacion = AportacionServicio.fillTable(tblAportaciones, asociado.id); lblAportacionT.Text = aportacion.ToString(); CreditoServicio.fillTable(tblCreditos, asociado.id); AhorroServicio.fillTable(dgvAhorros, asociado.id); }
// ######################################################################################### // ############## Llenar las tablas cuando se active el form #################### // ######################################################################################### private void FormMain_Activated(object sender, EventArgs e) { AhorroServicio.fillTable(tblAhorros); CreditoServicio.fillTable(tblCreditos); AsociadoServicio.fillTable(tblAsociados); }