public async Task <HttpResponseMessage> Post([FromBody] Tournament tournament)
        {
            _context.Tournament.Add(tournament);
            await _context.SaveChangesAsync();

            return(new HttpResponseMessage(HttpStatusCode.Created));
        }