/// <summary>
 /// Deprecated Method for adding a new object to the Produkt EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToProdukt(Produkt produkt)
 {
     base.AddObject("Produkt", produkt);
 }
 /// <summary>
 /// Create a new Produkt object.
 /// </summary>
 /// <param name="nrProduktu">Initial value of the NrProduktu property.</param>
 /// <param name="nazwaProduktu">Initial value of the NazwaProduktu property.</param>
 /// <param name="ilosc">Initial value of the Ilosc property.</param>
 /// <param name="cenaJednostkowa">Initial value of the CenaJednostkowa property.</param>
 public static Produkt CreateProdukt(global::System.Decimal nrProduktu, global::System.String nazwaProduktu, global::System.String ilosc, global::System.Decimal cenaJednostkowa)
 {
     Produkt produkt = new Produkt();
     produkt.NrProduktu = nrProduktu;
     produkt.NazwaProduktu = nazwaProduktu;
     produkt.Ilosc = ilosc;
     produkt.CenaJednostkowa = cenaJednostkowa;
     return produkt;
 }