Example #1
0
 public static Customer GetCustomerById(Guid id)
 {
     using (BasicChannel channel = new BasicChannel())
     {
         return(channel.GetCustomerById(id));
     }
 }