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