/// <summary>
 /// Create a new Artikel object.
 /// </summary>
 /// <param name="artikelId">Initial value of the ArtikelId property.</param>
 /// <param name="naam">Initial value of the Naam property.</param>
 /// <param name="inhoud">Initial value of the Inhoud property.</param>
 /// <param name="publish">Initial value of the Publish property.</param>
 public static Artikel CreateArtikel(global::System.Int32 artikelId, global::System.String naam, global::System.Byte[] inhoud, global::System.Boolean publish)
 {
     Artikel artikel = new Artikel();
     artikel.ArtikelId = artikelId;
     artikel.Naam = naam;
     artikel.Inhoud = inhoud;
     artikel.Publish = publish;
     return artikel;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Artikel EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToArtikel(Artikel artikel)
 {
     base.AddObject("Artikel", artikel);
 }