public float DarPrecioAlquiler(ulong cod) { CLibro aux = this.BuscaLibro(cod); if (aux != null) { return(aux.DarPrecioAlquiler()); } return(0.0f); }
public string DarDatos(ulong cod) { CLibro aux = this.BuscaLibro(cod); if (aux != null) { return(aux.DarDatos()); } return("Alumno inexistente"); }
public bool EliminarLibro(ulong cod) { CLibro aux = this.BuscaLibro(cod); if (aux != null) { this.listado.Remove(aux); return(true); } return(false); }
public float GetAlquiler() { return(CLibro.GetAlquiler()); }
public void SetAlquiler(float alq) { CLibro.SetAlquiler(alq); }