Ejemplo n.º 1
0
        public override Dictionary <string, string> GetData()
        {
            var customerId = dataGenerator.GetExistingCustomerId();
            var mobileId   = Guid.NewGuid().ToString();

            var phoneNumber    = dataGenerator.GetNextPhoneNumber();
            var activationCode = dataGenerator.GetNextActivationCode();

            return(new Dictionary <string, string>
            {
                { "customerId", customerId },
                { "phoneNumber", phoneNumber },
                { "mobileId", mobileId },
                { "activationCode", activationCode }
            });
        }