public static void Adicionar(Hotel pHotel) { if (listaHoteis.Any(h => h.Codigo == pHotel.Codigo)) throw new Exception("Hotel já cadastrado"); listaHoteis.Add(pHotel); }
public Quarto(Hotel pHotel, int pNrQuarto) { this.hotel = pHotel; this.nrQuarto = pNrQuarto; }
public static Quarto BuscarQuarto(int pNrQuarto, Hotel pHotel) { return listaQuartos.Find(q => q.NrQuarto == pNrQuarto && q.Hotel == pHotel); }
public static List<AreaLazer> ConsultarPorHotel(Hotel pHotel) { return listaAreaLazer.Where(a => a.Hotel.Codigo == pHotel.Codigo).ToList(); }