public WorkflowExampleData() {
			this.start = new WorkflowState("Start");
			this.end = new WorkflowState("Start");
			this.transition = new WorkflowTransition(start, end);
		}
		public WorkflowTransition(WorkflowState source, WorkflowState target) {
			this.Source = source;
			this.Target = target;
		}