/// <summary> /// Build a minimal row from a class (key fields only) /// </summary> public static void BuildMinimalRow(ref DataRow row, OeehcBase entity) { row.SetField("cono", entity.cono); row.SetField("orderno", entity.orderno); row.SetField("ordersuf", entity.ordersuf); row.SetField("oeehcRowID", entity.rowID.ToByteArray()); }
/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromOeehcBase(ref DataRow row, OeehcBase entity) { row.SetField("cono", entity.cono); row.SetField("custno", entity.custno); row.SetField("statustype", entity.statustype); row.SetField("creditmgr", entity.creditmgr); row.SetField("orderno", entity.orderno); row.SetField("ordersuf", entity.ordersuf); row.SetField("ourproc", entity.ourproc); row.SetField("approveinit", entity.approveinit); row.SetField("approvedt", entity.approvedt); row.SetField("approvetm", entity.approvetm); row.SetField("priority", entity.priority); row.SetField("comment1", entity.comment1); row.SetField("comment2", entity.comment2); row.SetField("transdt", entity.transdt); row.SetField("transtm", entity.transtm); row.SetField("operinit", entity.operinit); 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("holdcnt", entity.holdcnt); row.SetField("transproc", entity.transproc); row.SetField("oeehcRowID", entity.rowID.ToByteArray()); }