예제 #1
0
        // GET /RestServer/api/[email protected]
        // GET /RestServer/api/rooms/POR-cr6
        public Room GetAppointmentsByRoomAddress(string id)
        {
            Room room = exchange.GetAppointmentsByRoomAddress(id, DateTime.Today, DateTime.Today.AddDays(1));

            return(room);
        }