so can i not do this on gui side if Adapter is used?:
CustomerEntity customer = new CustomerEntity();
customer.CustomerID = "FOO";
customer.CompanyName = "Foo Inc.";
customer.Country = "USA";
DataAccessAdapter adapter = new DataAccessAdapter();
adapter.SaveEntity(customer, true);
i dont think i get this part. As long as i have a reference to both projects Adapter creates, isnt it possible to use the code above in GUI also?
what is stopping me?
thank you
-shane