Пример #1
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, IcsepBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("whse", entity.whse);
     row.SetField("prod", entity.prod);
     row.SetField("binloc", entity.binloc);
     row.SetField("runno", entity.runno);
     row.SetField("icsepRowID", entity.rowID.ToByteArray());
 }
Пример #2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromIcsepBase(ref DataRow row, IcsepBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("whse", entity.whse);
     row.SetField("prod", entity.prod);
     row.SetField("qtyexp", entity.qtyexp);
     row.SetField("qtycnt", entity.qtycnt);
     row.SetField("serlotfl", entity.serlotfl);
     row.SetField("binloc", entity.binloc);
     row.SetField("runno", entity.runno);
     row.SetField("createdt", entity.createdt);
     row.SetField("operinit", entity.operinit);
     row.SetField("transdt", entity.transdt);
     row.SetField("transtm", entity.transtm);
     row.SetField("seqno", entity.seqno);
     row.SetField("cost", entity.cost);
     row.SetField("wmfl", entity.wmfl);
     row.SetField("refer", entity.refer);
     row.SetField("unit", entity.unit);
     row.SetField("entfl", entity.entfl);
     row.SetField("phyfl", entity.phyfl);
     row.SetField("icspecrecno", entity.icspecrecno);
     row.SetField("createfl", entity.createfl);
     row.SetField("lastcntdt", entity.lastcntdt);
     row.SetField("rectype", entity.rectype);
     row.SetField("mustcntfl", entity.mustcntfl);
     row.SetField("serlotty", entity.serlotty);
     row.SetField("user1", entity.user1);
     row.SetField("user2", entity.user2);
     row.SetField("user3", entity.user3);
     row.SetField("user4", entity.user4);
     row.SetField("user5", entity.user5);
     row.SetField("user6", entity.user6);
     row.SetField("user7", entity.user7);
     row.SetField("user8", entity.user8);
     row.SetField("user9", entity.user9);
     row.SetField("transproc", entity.transproc);
     row.SetField("custcost", entity.custcost);
     row.SetField("custqty", entity.custqty);
     row.SetField("custqtyunavail", entity.custqtyunavail);
     row.SetField("esbcountfl", entity.esbcountfl);
     row.SetField("inventoryty", entity.inventoryty);
     row.SetField("icsepRowID", entity.rowID.ToByteArray());
 }