Example #1
0
        /// <summary>
        /// the method to retrieve all the booking for a escape room whit that id
        /// </summary>
        /// <param name="EscId">escape-rooms id</param>
        /// <returns>a list whit all booking for that escape-room </returns>
        public IEnumerable <Booking> GetAllOneRoom(int EscId)
        {
            BookingController bookCon = new BookingController();

            return(bookCon.GetAllOneRoom(EscId));
        }