Esempio n. 1
0
 static void Main(string[] args)
 {
     Product product = new Product()
     {
         ProductName = "Apple Mac Book Pro",
         Price = 21000
     };
     OverseasProxy agent = new OverseasProxy();
     agent.Buy(product);
     Console.ReadLine();
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            Product product = new Product()
            {
                ProductName = "Apple Mac Book Pro",
                Price       = 21000
            };
            OverseasProxy agent = new OverseasProxy();

            agent.Buy(product);
            Console.ReadLine();
        }