/// <summary> /// Build a minimal row from a class (key fields only) /// </summary> public static void BuildMinimalRow(ref DataRow row, ApebcBase entity) { row.SetField("cono", entity.cono); row.SetField("pono", entity.pono); row.SetField("jrnlno", entity.jrnlno); row.SetField("setno", entity.setno); row.SetField("posuf", entity.posuf); row.SetField("lineno", entity.lineno); row.SetField("apebcRowID", entity.rowID.ToByteArray()); }
/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromApebcBase(ref DataRow row, ApebcBase entity) { row.SetField("cono", entity.cono); row.SetField("vendno", entity.vendno); row.SetField("apinvno", entity.apinvno); row.SetField("pono", entity.pono); row.SetField("costord", entity.costord); row.SetField("statustype", entity.statustype); row.SetField("proddesc", entity.proddesc); row.SetField("qtycost", entity.qtycost); row.SetField("cost", entity.cost); row.SetField("currencyty", entity.currencyty); row.SetField("exchgrate1", entity.exchgrate1); row.SetField("exchgrate2", entity.exchgrate2); row.SetField("jrnlno", entity.jrnlno); row.SetField("setno", entity.setno); row.SetField("whse", entity.whse); row.SetField("costrcv", entity.costrcv); row.SetField("qtyord", entity.qtyord); row.SetField("qtyrcv", entity.qtyrcv); row.SetField("unitconv", entity.unitconv); row.SetField("eachfl", entity.eachfl); row.SetField("shipprod", entity.shipprod); row.SetField("operinit", entity.operinit); row.SetField("transdt", entity.transdt); row.SetField("transtm", entity.transtm); row.SetField("posuf", entity.posuf); row.SetField("lineno", entity.lineno); row.SetField("autorecfl", entity.autorecfl); row.SetField("proddesc2", entity.proddesc2); 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("updatefl", entity.updatefl); row.SetField("transproc", entity.transproc); row.SetField("revalno", entity.revalno); row.SetField("apebcRowID", entity.rowID.ToByteArray()); }