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