public static string GetRandomEntityType()

in CosmosClone/CosmosCloneCommon/Model/RandomNumberGenerator.cs [23:39]


        public static string GetRandomEntityType()
        {
            switch (RandomNumberGenerator.GetNext(5))
            {
                case 1:
                    return "Individual";
                case 2:
                    return "Organization";
                case 3:
                    return "Supplier";
                case 4:
                    return "Partner";
                case 0:
                default:
                    return "External";
            }
        }