It looks like you're new here. Sign in or register to get started.
using CustomerCardWS; public class GetCustomer { private Customer_Service custService; private Customer cust; public GetCustomer() { custService = new Customer_Service(); custService.UseDefaultCredentials = true; custService.Url = "http://XXX:7047/DynamicsNAV/WS/CRONUS_AG/Page/Customer"; } public Customer getCustomerByCustNo(string CustNo) { cust = custService.Read(CustNo); return cust; }
Answers
cust now can be displayed by gridview