public String PlaceBet(BetDTO bet)
 {
     try
     {
         BetService.PlaceBet(bet);
         return("Success");
     }
     catch (Exception ex)
     {
         return("ERROR: " + ex.Message);
     }
 }
 public void PlaceBet([FromBody] BetDto dto)
 {
     betService.PlaceBet(dto);
 }