예제 #1
0
 public static Customer CreateCustomer(string name, string description, string address, string phone)
 {
     using (BasicChannel channel = new BasicChannel())
     {
         return(channel.CreateCustomer(name, description, address, phone));
     }
 }