Пример #1
0
        static void Main(string[] args)
        {
            DateTime now = DateTime.Now;
            Console.WriteLine(now.ToString("yyyy-MM-dd"));
            Service1Client client = new Service1Client();
            string[] productIds1 = new string[2]{"1111","2222"};
            int[] quantities1 = new int[2]{119,911};

            crud db = new crud("OrdersDB", "ism6236", "ism6236bo");
            db.placeOrder("2",productIds1,quantities1);
            //client.placeOrder("2",productIds1,quantities1);
            // Use the 'client' variable to call operations on the service.
            //string[] tt = client.listPurchases("1");
            //string[] tt = client.readTable("Orders");
            //foreach (string t in tt)
            //{
            //Console.WriteLine(t);
            //}

            // Always close the client.
            client.Close();
            Console.Read();
        }
Пример #2
0
 public Service1()
 {
     db = new crud("OrdersDB", "ism6236", "ism6236bo");
 }