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