コード例 #1
0
        public ProductsPage()
        {
            ShopServiceClient shopProxy = new ShopServiceClient();

            InitializeComponent();

            productBox.ItemsSource = ssc.GetAllProducts();
            ;
            moneyLeft.Content = "Money left: €"; //+ ;
        }
コード例 #2
0
        static void Main(string[] args)
        {
            ShopServiceClient shopProxy = new ShopServiceClient();

            Console.WriteLine("All Products\n");
            foreach (Product p in shopProxy.GetAllProducts())
            {
                Console.WriteLine(p.Name);
            }

            //Console.WriteLine("Please enter your name: ");
            //string name = Console.ReadLine();
            //while (true)
            //{
            //    Console.WriteLine("Type a note (or hit enter to quit): ");
            //    string note = Console.ReadLine();
            //    if (string.IsNullOrEmpty(note))
            //    {
            //        break;
            //    }
            //    shopProxy.PostNote(name, note);
            //}
        }