public async Task <IActionResult> DeletePointsForMatch([FromRoute] int matchId)
        {
            try
            {
                await pointsService.DeletePointsForMatchAsync(matchId);

                return(Accepted());
            }
            catch (NotFoundInDatabaseException)
            {
                return(NotFound());
            }
            catch (Exception)
            {
                return(BadRequest());
            }
        }