예제 #1
0
 // GET: Home/Details/5
 public ActionResult Details(string customerID)
 {
     NwServiceClient service = new NwServiceClient();
     var customer = service.GetCustomer(customerID);
     return View(customer);
 }
예제 #2
0
 // GET: Home
 public ActionResult Index()
 {
     NwServiceClient service = new NwServiceClient();
     var customers = service.GetAllCustomers();
     return View(customers);
 }