コード例 #1
0
 public Customer CreateCustomer(string name, string description, string address, string phone)
 {
     if (string.IsNullOrEmpty(name))
     {
         throw new ArgumentNullException("name");
     }
     return(BasicInformationLogic.CreateCustomer(RequestContext.Current.TenantId, name, description, address, phone));
 }