public bool EstPresente(Oeuvre uneOeuvre) { for (int i = 0; i < lesOeuvres.Count; i++) { if (lesOeuvres[i].GetNOm() == uneOeuvre.GetNOm()) { return(true); } } }
public bool ChangerSalle(Oeuvre uneOeuvre, Salle salleDestination) { bool changerSalle = true; if (salleDestination.Sallepleine() == true) { changerSalle = false; } else { if (lesSalles[OuSeTrouve(uneOeuvre)] == salleDestination) { changerSalle = false; } else { if (OuSeTrouve(uneOeuvre) == -1) { changerSalle = false; } } } return(changerSalle); }
public int OuSeTrouve(Oeuvre uneOeuvre) { foreach (Salle) { } }