コード例 #1
0
 public void UpdateCustomer(Customer customer)
 {
     if (customer.Id == Guid.Empty)
     {
         throw new ArgumentNullException("customer.Id");
     }
     BasicInformationLogic.UpdateCustomer(customer);
 }