Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FlowEntity" /> class.
 /// </summary>
 /// <param name="flow">flow.</param>
 public FlowEntity(FlowDTO flow = default(FlowDTO))
 {
     this.Flow = flow;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ProcessGroupFlowDTO" /> class.
 /// </summary>
 /// <param name="id">The id of the component..</param>
 /// <param name="uri">The URI for futures requests to the component..</param>
 /// <param name="parentGroupId">The id of parent process group of this component if applicable..</param>
 /// <param name="breadcrumb">The breadcrumb of the process group..</param>
 /// <param name="flow">The flow structure starting at this Process Group..</param>
 /// <param name="lastRefreshed">The time the flow for the process group was last refreshed..</param>
 public ProcessGroupFlowDTO(string id = default(string), string uri = default(string), string parentGroupId = default(string), FlowBreadcrumbEntity breadcrumb = default(FlowBreadcrumbEntity), FlowDTO flow = default(FlowDTO), string lastRefreshed = default(string))
 {
     this.Id            = id;
     this.Uri           = uri;
     this.ParentGroupId = parentGroupId;
     this.Breadcrumb    = breadcrumb;
     this.Flow          = flow;
     this.LastRefreshed = lastRefreshed;
 }