Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VersionedFlowEntity" /> class.
 /// </summary>
 /// <param name="versionedFlow">The versioned flow.</param>
 public VersionedFlowEntity(VersionedFlowDTO versionedFlow = default(VersionedFlowDTO))
 {
     this.VersionedFlow = versionedFlow;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="StartVersionControlRequestEntity" /> class.
 /// </summary>
 /// <param name="versionedFlow">The versioned flow.</param>
 /// <param name="processGroupRevision">The Revision of the Process Group under Version Control.</param>
 /// <param name="disconnectedNodeAcknowledged">Acknowledges that this node is disconnected to allow for mutable requests to proceed..</param>
 public StartVersionControlRequestEntity(VersionedFlowDTO versionedFlow = default(VersionedFlowDTO), RevisionDTO processGroupRevision = default(RevisionDTO), bool?disconnectedNodeAcknowledged = default(bool?))
 {
     this.VersionedFlow                = versionedFlow;
     this.ProcessGroupRevision         = processGroupRevision;
     this.DisconnectedNodeAcknowledged = disconnectedNodeAcknowledged;
 }