Ejemplo n.º 1
0
 public void AñadirDevolucion(Prestamo prestamo, Devolucion devolucion, Bibliotec biblioteca)
 {
     biblioteca.Prestamos.Remove(prestamo);
     biblioteca.Devoluciones.Add(devolucion);
 }
Ejemplo n.º 2
0
 public void AñadirPrestamo(Prestamo prestamo, Bibliotec biblioteca)
 {
     biblioteca.Prestamos.Add(prestamo);
 }