protected internal ApplicationBindingBase()
 {
     _referencedApplications = new();
     _receivePorts           = new(this);
     _sendPorts       = new(this);
     _orchestrations  = new(this);
     _visitorPipeline = new VisitorPipeline <TNamingConvention>(this);
     Timestamp        = DateTime.Now;
 }
示例#2
0
 internal ProcessingStage(VisitorPipeline <TNamingConvention> visitorPipeline) : base(visitorPipeline)
 {
 }
 private protected VisitorPipelineStage(VisitorPipeline <TNamingConvention> visitorPipeline)
 {
     VisitorPipeline = visitorPipeline;
 }