public override async Task OnDisconnectedAsync(Exception exception)
        {
            _drawService.RemoveParticipant(Context.ConnectionId);

            await _controlPanelHubContext.Clients.AllExcept(Context.ConnectionId).UpdateConnectedPlayers(_drawService.GetParticipantsCount());

            await base.OnDisconnectedAsync(exception);
        }