예제 #1
0
 public string GetJokesByRandom()
 {
     BGetJokes getJokes = new BGetJokes();
     getJokes.Execute();
     return JsonConvert.SerializeObject(getJokes.QiushibaikeList);
 }
예제 #2
0
 public string GetJokesByKeyWordes(string keywords)
 {
     BGetJokes getJokes = new BGetJokes(keywords);
     getJokes.Execute();
     return JsonConvert.SerializeObject(getJokes.QiushibaikeList);
 }