Esempio n. 1
0
 public IActionResult CreateRound()
 {
     try
     {
         _roundService.GenerateRound();
         return(Ok());
     }
     catch (System.Exception ex)
     {
         return(BadRequest(ex.Message));
     }
 }