示例#1
0
        public void Test()
        {
            // arrange
            IList <string> rooms = null;

            // act
            rooms = GoClassService.GetRooms("9", "seg");

            // assert
            Assert.That(rooms, Is.Not.Null);
        }
示例#2
0
 // GET: api/Rooms
 public Response Get(string time, string dayWeek)
 {
     return(ParseResponse(GoClassService.GetRooms(time, dayWeek)));
 }