public void Shuffle()
        {
            long seed = DateTime.UtcNow.Ticks;

            Rights.Shuffle(
                new Random((int)seed)
                );
            Relation.Shuffle(
                new Random((int)seed)
                );
        }