예제 #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the TKADROes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTKADROes(TKADRO tKADRO)
 {
     base.AddObject("TKADROes", tKADRO);
 }
예제 #2
0
 /// <summary>
 /// Create a new TKADRO object.
 /// </summary>
 /// <param name="tKADROK">Initial value of the TKADROK property.</param>
 /// <param name="sICILK">Initial value of the SICILK property.</param>
 /// <param name="nETTUTAR">Initial value of the NETTUTAR property.</param>
 public static TKADRO CreateTKADRO(global::System.Int32 tKADROK, global::System.Int32 sICILK, global::System.Decimal nETTUTAR)
 {
     TKADRO tKADRO = new TKADRO();
     tKADRO.TKADROK = tKADROK;
     tKADRO.SICILK = sICILK;
     tKADRO.NETTUTAR = nETTUTAR;
     return tKADRO;
 }
예제 #3
0
        private static void Oracle_Sequence_Insert()
        {
            TKADRO insert = new TKADRO();
            insert.BRUTTUTAR = 42;
            insert.NETTUTAR = 12;
            insert.SICILK = 13408;//BURAYI DEĞİŞTİR.
            insert.TAHAKKUKTAR = new DateTime(2010, 10, 10);

            Console.WriteLine(Util_Oracle.Adapter.Insert(insert) + " - " + insert.TKADROK);
        }