Example #1
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, IcsplpBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("type", entity.type);
     row.SetField("prod", entity.prod);
     row.SetField("icsplpRowID", entity.rowID.ToByteArray());
 }
Example #2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromIcsplpBase(ref DataRow row, IcsplpBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("type", entity.type);
     row.SetField("prod", entity.prod);
     row.SetField("qtyord", entity.qtyord);
     row.SetField("unit", entity.unit);
     row.SetField("price", entity.price);
     row.SetField("operinit", entity.operinit);
     row.SetField("transproc", entity.transproc);
     row.SetField("transdt", entity.transdt);
     row.SetField("transtm", entity.transtm);
     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("binloc", entity.binloc);
     row.SetField("lastcountqty", entity.lastcountqty);
     row.SetField("mincountqty", entity.mincountqty);
     row.SetField("maxcountqty", entity.maxcountqty);
     row.SetField("lastcountdt", entity.lastcountdt);
     row.SetField("listid", entity.listid);
     row.SetField("icsplpRowID", entity.rowID.ToByteArray());
 }