Ejemplo n.º 1
0
 public async Task <IHttpActionResult> Post([FromBody] Tournament tournament)
 {
     if (!ModelState.IsValid)
     {
         return(BadRequest(ModelState));
     }
     return(Json(await _tournamentService.AddTournamentAsync(tournament)));
 }