示例#1
0
        private void init(int id
                          , string name, bool isEnabled, MoSIoTGenNHibernate.EN.MosIoT.RecipeTriggerEN triggers, System.Collections.Generic.IList <MoSIoTGenNHibernate.EN.MosIoT.RecipeActionEN> recipeAction, MoSIoTGenNHibernate.EN.MosIoT.IoTScenarioEN ioTScenario, double intervalTime, string description)
        {
            this.Id = id;


            this.Name = name;

            this.IsEnabled = isEnabled;

            this.Triggers = triggers;

            this.RecipeAction = recipeAction;

            this.IoTScenario = ioTScenario;

            this.IntervalTime = intervalTime;

            this.Description = description;
        }
示例#2
0
 public RecipeEN(int id, string name, bool isEnabled, MoSIoTGenNHibernate.EN.MosIoT.RecipeTriggerEN triggers, System.Collections.Generic.IList <MoSIoTGenNHibernate.EN.MosIoT.RecipeActionEN> recipeAction, MoSIoTGenNHibernate.EN.MosIoT.IoTScenarioEN ioTScenario, double intervalTime, string description
                 )
 {
     this.init(Id, name, isEnabled, triggers, recipeAction, ioTScenario, intervalTime, description);
 }