Ejemplo n.º 1
0
        // GET: Rooms
        public ActionResult Index()
        {
            List <RoomModel> rooms = roomDal.GetOpenRooms();

            return(View("Index", rooms));
        }