コード例 #1
0
ファイル: WorkflowEvent.cs プロジェクト: crazyants/extensions
        public ModelEntity GetModel()
        {
            var model = new WorkflowEventModel()
            {
                MainEntityType = this.Lane.Pool.Workflow.MainEntityType,
                Name           = this.Name,
                Type           = this.Type,
                Task           = WorkflowEventTaskModel.GetModel(this)
            };

            return(model);
        }
コード例 #2
0
        public ModelEntity GetModel()
        {
            var model = new WorkflowEventModel()
            {
                MainEntityType = this.Lane.Pool.Workflow.MainEntityType,
                Name           = this.Name,
                Type           = this.Type,
                Task           = WorkflowEventTaskModel.GetModel(this),
                Timer          = this.Timer,
                BpmnElementId  = this.BpmnElementId,
            };

            return(model);
        }