Exemplo n.º 1
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, IcsecBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("rectype", entity.rectype);
     row.SetField("prod", entity.prod);
     row.SetField("keyno", entity.keyno);
     row.SetField("icsecRowID", entity.rowID.ToByteArray());
     row.SetField("rowpointer", entity.rowpointer);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromIcsecBase(ref DataRow row, IcsecBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("rectype", entity.rectype);
     row.SetField("prod", entity.prod);
     row.SetField("altprod", entity.altprod);
     row.SetField("keyno", entity.keyno);
     row.SetField("orderqty", entity.orderqty);
     row.SetField("unitsell", entity.unitsell);
     row.SetField("transdt", entity.transdt);
     row.SetField("transtm", entity.transtm);
     row.SetField("operinit", entity.operinit);
     row.SetField("leadtm", entity.leadtm);
     row.SetField("price", entity.price);
     row.SetField("lastchgdt", entity.lastchgdt);
     row.SetField("unitbuy", entity.unitbuy);
     row.SetField("unitstnd", entity.unitstnd);
     row.SetField("custno", entity.custno);
     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("extprod", entity.extprod);
     row.SetField("extproddescrip1", entity.extproddescrip1);
     row.SetField("extproddescrip2", entity.extproddescrip2);
     row.SetField("addprtinfo", entity.addprtinfo);
     row.SetField("shipto", entity.shipto);
     row.SetField("custglacctno", entity.custglacctno);
     row.SetField("rowpointer", entity.rowpointer);
     row.SetField("sellfirsttype", entity.sellfirsttype);
     row.SetField("transdttmz", entity.transdttmz);
     row.SetField("icsecRowID", entity.rowID.ToByteArray());
 }