public BrokerContext(IProducer producer, ServiceContext context) : base(context.Service)
 {
     context.CopyTo(this);
     Producer = producer;
 }
 public CallerContext(Caller caller, ServiceContext context) : base(context.Service)
 {
     context.CopyTo(this);
     Caller = caller;
 }