コード例 #1
0
        private void init(int id
                          , MoSIoTGenNHibernate.EN.MosIoT.RuleEN rule, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN operation)
        {
            this.Id = id;


            this.Rule = rule;

            this.Operation = operation;
        }
コード例 #2
0
        private void init(int id
                          , string name, MoSIoTGenNHibernate.Enumerated.MosIoT.DataTypeEnum type, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN entityOperation)
        {
            this.Id = id;


            this.Name = name;

            this.Type = type;

            this.EntityOperation = entityOperation;
        }
コード例 #3
0
        private void init(int id
                          , MoSIoTGenNHibernate.EN.MosIoT.RecipeEN recipe, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN operation, string name, string description)
        {
            this.Id = id;


            this.Recipe = recipe;

            this.Operation = operation;

            this.Name = name;

            this.Description = description;
        }
コード例 #4
0
 public EntityArgumentEN(int id, string name, MoSIoTGenNHibernate.Enumerated.MosIoT.DataTypeEnum type, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN entityOperation
                         )
 {
     this.init(Id, name, type, entityOperation);
 }
コード例 #5
0
        private void init(int id
                          , MoSIoTGenNHibernate.EN.MosIoT.RecipeEN recipe, MoSIoTGenNHibernate.Enumerated.MosIoT.OperatorTypeEnum operator_, string value, System.Collections.Generic.IList <MoSIoTGenNHibernate.EN.MosIoT.EntityAttributesEN> entityAttributes, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN event_, string description)
        {
            this.Id = id;


            this.Recipe = recipe;

            this.Operator_ = operator_;

            this.Value = value;

            this.EntityAttributes = entityAttributes;

            this.Event_ = event_;

            this.Description = description;
        }
コード例 #6
0
 public RecipeTriggerEN(int id, MoSIoTGenNHibernate.EN.MosIoT.RecipeEN recipe, MoSIoTGenNHibernate.Enumerated.MosIoT.OperatorTypeEnum operator_, string value, System.Collections.Generic.IList <MoSIoTGenNHibernate.EN.MosIoT.EntityAttributesEN> entityAttributes, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN event_, string description
                        )
 {
     this.init(Id, recipe, operator_, value, entityAttributes, event_, description);
 }
コード例 #7
0
 public RecipeActionEN(int id, MoSIoTGenNHibernate.EN.MosIoT.RecipeEN recipe, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN operation, string name, string description
                       )
 {
     this.init(Id, recipe, operation, name, description);
 }
コード例 #8
0
 public RuleActionEN(int id, MoSIoTGenNHibernate.EN.MosIoT.RuleEN rule, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN operation
                     )
 {
     this.init(Id, rule, operation);
 }