protected CardCommandLogChannelBase(TSmartCardChannelType channel, ICardCommandLogger logger, string streamName)
        {
            this.Channel    = channel;
            this.logger     = logger;
            this.streamName = streamName;
            this.Channel.DbC_AssureArgumentNotNull("channel");

            this.Channel.SmartCard.RemovedFromReader += this.SmartCard_RemovedFromReader;
        }
 public TpduCommandLogChannel(ITpduChannel channel, ICardCommandLogger logger, string streamName)
     : base(channel, logger, streamName)
 {
 }