Ejemplo n.º 1
0
        public IList <Hotel> GetHotelsByStadName(string stadstring)
        {
            Stad stad = stadService.FindIdByName(stadstring);

            IList <Hotel> hotels = hotelDAO.GetHotelByStadId(stad.Id);

            return(hotels);
        }