public RegisterTask(ISendChannel sendChannel, IReceiveChannel registerIncomingChannel)
 {
     _SendChannel = sendChannel;
     _RegisterIncomingChannel = registerIncomingChannel;
 }
 public FileReceiveAdapter(IFileSystem fileSystem, string path, string filter, ISendChannel sendChannel)
 {
     ReceiveChannel = new FileReceiveChannel(fileSystem, path, filter);
 }
 public CustomerTask(ISendChannel customerProcessorOutboundChannel, int numberOfDrinkRequests)
 {
     _CustomerProcessorOutboundChannel = customerProcessorOutboundChannel;
     _NumberOfDrinkRequests = numberOfDrinkRequests;
 }