Beispiel #1
0
        public int GenerateUniqueDrawId(Random random)
        {
            int id = 0;

            do
            {
                id = random.Next(1, 10001);
            } while (Draws.Exists(x => x.Id == id));
            return(id);
        }