コード例 #1
0
 // Appelle la requête qui récupère la liste des hôtels correspondant à la recherche avancée
 public static List <Hotel> GetAllHotelsAdvanced(string location, int category, Boolean hasWifi, Boolean hasParking)
 {
     return(HotelDB.GetAllHotelsAdvanced(location, category, hasWifi, hasParking));
 }