Ejemplo n.º 1
0
 public void TestMethod1()
 {
     ServiceCustomer.ServiceCustomerClient proxy    = new ServiceCustomer.ServiceCustomerClient();
     ServiceCustomer.CustomerBE            customer = new ServiceCustomer.CustomerBE();
     customer.Name           = "Rodrigo";
     customer.SurName        = "Gomez";
     customer.DocumentType   = "DNI";
     customer.DocumentNumber = 76483923;
     proxy.CreateCustomer(customer);
 }
Ejemplo n.º 2
0
        public void TestMethod3()
        {
            ServiceCustomer.ServiceCustomerClient proxy = new ServiceCustomer.ServiceCustomerClient();

            proxy.DeleteCustomer(3);
        }
Ejemplo n.º 3
0
        public void TestMethod2()
        {
            ServiceCustomer.ServiceCustomerClient proxy = new ServiceCustomer.ServiceCustomerClient();

            var lista = proxy.ListCustomer();
        }