Example #1
0
 public void UpdateCustomer(Customer currentCustomer, bool commit)
 {
     PersistSvr<Customer>.Update(currentCustomer, commit);
 }
Example #2
0
 public void InsertCustomer(Customer customer, bool commit)
 {
     PersistSvr<Customer>.Insert(customer, commit);
 }