/// <summary> /// Build a minimal row from a class (key fields only) /// </summary> public static void BuildMinimalRow(ref DataRow row, DepmstBase entity) { row.SetField("coNum", entity.coNum); row.SetField("whNum", entity.whNum); row.SetField("deptNum", entity.deptNum); row.SetField("depmstRowID", entity.rowID.ToByteArray()); }
/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromDepmstBase(ref DataRow row, DepmstBase entity) { row.SetField("co_num", entity.coNum); row.SetField("wh_num", entity.whNum); row.SetField("dept_num", entity.deptNum); row.SetField("dept_name", entity.deptName); row.SetField("dept_type", entity.deptType); row.SetField("stage_in", entity.stageIn); row.SetField("stage_out", entity.stageOut); row.SetField("custom_data1", entity.customData1); row.SetField("custom_data2", entity.customData2); row.SetField("custom_data3", entity.customData3); row.SetField("custom_data4", entity.customData4); row.SetField("custom_data5", entity.customData5); row.SetField("pick_bin", entity.pickBin); row.SetField("row_status", entity.rowStatus); row.SetField("trans_user", entity.transUser); row.SetField("trans_date", entity.transDate); row.SetField("trans_proc", entity.transProc); row.SetField("depmstRowID", entity.rowID.ToByteArray()); }