/// <summary> /// Método desusado para agregar un nuevo objeto al EntitySet News. Considere la posibilidad de usar el método .Add de la propiedad ObjectSet<T> asociada. /// </summary> public void AddToNews(News news) { base.AddObject("News", news); }
/// <summary> /// Crear un nuevo objeto News. /// </summary> /// <param name="id">Valor inicial de la propiedad Id.</param> /// <param name="title">Valor inicial de la propiedad Title.</param> /// <param name="content">Valor inicial de la propiedad Content.</param> /// <param name="insertedDate">Valor inicial de la propiedad InsertedDate.</param> /// <param name="sectionsId">Valor inicial de la propiedad SectionsId.</param> /// <param name="providersId">Valor inicial de la propiedad ProvidersId.</param> /// <param name="hasVideo">Valor inicial de la propiedad HasVideo.</param> /// <param name="pubDate">Valor inicial de la propiedad PubDate.</param> /// <param name="description">Valor inicial de la propiedad Description.</param> /// <param name="source">Valor inicial de la propiedad Source.</param> public static News CreateNews(global::System.Int32 id, global::System.String title, global::System.String content, global::System.DateTime insertedDate, global::System.Int32 sectionsId, global::System.Int32 providersId, global::System.Boolean hasVideo, global::System.DateTime pubDate, global::System.String description, global::System.String source) { News news = new News(); news.Id = id; news.Title = title; news.Content = content; news.InsertedDate = insertedDate; news.SectionsId = sectionsId; news.ProvidersId = providersId; news.HasVideo = hasVideo; news.PubDate = pubDate; news.Description = description; news.Source = source; return news; }