private void CargarListaPrestamo()
 {
     lstPrestamos.DataSource = null;
     lstPrestamos.DataSource = prestamoservicio.TraerPrestamos();
 }
示例#2
0
 //EVENTOS
 private void Form1_Load(object sender, EventArgs e)
 {
     CargarTiposPrestamo(_tipoPrestamoServicio.TraerTiposPrestamo());
     CargarPrestamos(_prestamoServicio.TraerPrestamos());
 }