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