Esempio n. 1
0
        // Enters a customers shipping details. If the dictionary is null, the billing contact info is used.
        public Info EnterShippingAddress(Dictionary <string, string> info)
        {
            YourDetails yourDetails = new YourDetails(driver);

            yourDetails.EnterShippingAddress(info);

            return(this);
        }
Esempio n. 2
0
        // Enters a customers billing and contact details.
        public Info EnterBillingContactInfo(Dictionary <string, string> info)
        {
            YourDetails yourDetails = new YourDetails(driver);

            yourDetails.EnterBillingContactInfo(info);

            return(this);
        }