public IActionResult Update(Row rowIn) { Row row = _leaderboardService.Get(rowIn.ClientId); if (row == null) { return(NotFound()); } _leaderboardService.Update(rowIn); return(NoContent()); }
public void Put(int id, [FromBody] Leaderboard leaderboard) { _leaderboardService.Update(leaderboard); }