Example #1
0
 public async Task <ActionResult <ServiceResponse <HighScoreDto> > > GetHighScore()
 {
     return(Ok(await _fightService.GetHighScore()));
 }
 public async Task <IActionResult> GetHighScore()
 {
     return(Ok(await _fightService.GetHighScore()));
 }
Example #3
0
 public async Task <IActionResult> GetHighScore() => ActionResultHandler(await _fightService.GetHighScore());