public void MapUserAndConnection(string userId)
        {
            Console.WriteLine($"'MapUserAndConnection' invoked. Parameter value: '{userId}");
            Console.WriteLine($"Connection id for {userId}: {Context.ConnectionId}");

            _trackService.AddOrUpdateLiveTracker(userId, Context.ConnectionId);
        }