/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromIcsepsBase(ref DataRow row, IcsepsBase entity) { row.SetField("cono", entity.cono); row.SetField("whse", entity.whse); row.SetField("runno", entity.runno); row.SetField("serlotty", entity.serlotty); row.SetField("serialno", entity.serialno); row.SetField("prod", entity.prod); row.SetField("quantity", entity.quantity); row.SetField("incfl", entity.incfl); 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("unavailfl", entity.unavailfl); row.SetField("opendt", entity.opendt); row.SetField("expiredt", entity.expiredt); row.SetField("binloc", entity.binloc); row.SetField("comment", entity.comment); row.SetField("icsepsRowID", entity.rowID.ToByteArray()); }
/// <summary> /// Build a minimal row from a class (key fields only) /// </summary> public static void BuildMinimalRow(ref DataRow row, IcsepsBase entity) { row.SetField("cono", entity.cono); row.SetField("whse", entity.whse); row.SetField("runno", entity.runno); row.SetField("serialno", entity.serialno); row.SetField("prod", entity.prod); row.SetField("unavailfl", entity.unavailfl); row.SetField("icsepsRowID", entity.rowID.ToByteArray()); }