/// <summary> /// Устаревший метод для добавления новых объектов в набор EntitySet themes. Взамен можно использовать метод .Add связанного свойства ObjectSet<T>. /// </summary> public void AddTothemes(themes themes) { base.AddObject("themes", themes); }
/// <summary> /// Создание нового объекта themes. /// </summary> /// <param name="id">Исходное значение свойства id.</param> public static themes Createthemes(global::System.Int32 id) { themes themes = new themes(); themes.id = id; return themes; }