コード例 #1
0
 public async Task <IEnumerable <Confession> > SearchConfessionsByTags([FromBody] ForBodyString s)
 {
     return(await this.UWS.SearchConfs(true, s.search));
 }
コード例 #2
0
 public async Task <IEnumerable <Confession> > SearchAdviceByContent([FromBody] ForBodyString s)
 {
     return(await this.UWS.SearchAdvice(false, s.search));
 }
コード例 #3
0
 public async Task <IEnumerable <Comment> > GetComments([FromBody] ForBodyString s)
 {
     return(await this.UWS.GetComments(s.search));
 }