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); }
public void TestMethod3() { ServiceCustomer.ServiceCustomerClient proxy = new ServiceCustomer.ServiceCustomerClient(); proxy.DeleteCustomer(3); }
public void TestMethod2() { ServiceCustomer.ServiceCustomerClient proxy = new ServiceCustomer.ServiceCustomerClient(); var lista = proxy.ListCustomer(); }