/// <summary> /// Deprecated Method for adding a new object to the indicator EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToindicator(indicator indicator) { base.AddObject("indicator", indicator); }
/// <summary> /// Create a new indicator object. /// </summary> /// <param name="id_indicator">Initial value of the id_indicator property.</param> /// <param name="name">Initial value of the name property.</param> /// <param name="value_type">Initial value of the value_type property.</param> /// <param name="is_deleted">Initial value of the is_deleted property.</param> public static indicator Createindicator(global::System.Int32 id_indicator, global::System.String name, global::System.String value_type, global::System.Boolean is_deleted) { indicator indicator = new indicator(); indicator.id_indicator = id_indicator; indicator.name = name; indicator.value_type = value_type; indicator.is_deleted = is_deleted; return indicator; }