示例#1
0
文件: Info.cs 项目: aszabo00/Test
        // 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);
        }
示例#2
0
文件: Info.cs 项目: aszabo00/Test
        // Enters a customers billing and contact details.
        public Info EnterBillingContactInfo(Dictionary <string, string> info)
        {
            YourDetails yourDetails = new YourDetails(driver);

            yourDetails.EnterBillingContactInfo(info);

            return(this);
        }