コード例 #1
0
 public async Task <List <GetClanResponseModel> > Get()
 {
     return(await _ClanService.GetAll());
 }
コード例 #2
0
ファイル: ClanController.cs プロジェクト: lazadjole/NWT3
 public ActionResult <IList <ClanDto> > Get()
 {
     return(Ok(_clanService.GetAll()));
 }