private void init(int id
                          , MoSIoTGenNHibernate.EN.MosIoT.RuleEN rule, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN operation)
        {
            this.Id = id;


            this.Rule = rule;

            this.Operation = operation;
        }
        private void init(int id
                          , MoSIoTGenNHibernate.EN.MosIoT.RuleEN rule, MoSIoTGenNHibernate.Enumerated.MosIoT.OperatorTypeEnum operator_, string value, System.Collections.Generic.IList <MoSIoTGenNHibernate.EN.MosIoT.EntityAttributesEN> entityAttributes)
        {
            this.Id = id;


            this.Rule = rule;

            this.Operator_ = operator_;

            this.Value = value;

            this.EntityAttributes = entityAttributes;
        }
 public RuleConditionEN(int id, MoSIoTGenNHibernate.EN.MosIoT.RuleEN rule, MoSIoTGenNHibernate.Enumerated.MosIoT.OperatorTypeEnum operator_, string value, System.Collections.Generic.IList <MoSIoTGenNHibernate.EN.MosIoT.EntityAttributesEN> entityAttributes
                        )
 {
     this.init(Id, rule, operator_, value, entityAttributes);
 }
 public RuleActionEN(int id, MoSIoTGenNHibernate.EN.MosIoT.RuleEN rule, MoSIoTGenNHibernate.EN.MosIoT.EntityOperationEN operation
                     )
 {
     this.init(Id, rule, operation);
 }