示例#1
0
        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);
        }