note description: "Summary description for {TRANSACTION}." author: "" date: "$Date$" revision: "$Revision$" class TRANSACTION create make feature type: STRING value: INTEGER show do print (type + " ") print (value) end feature {NONE} make (in_type: STRING in_value: INTEGER) do type := in_type value := in_value end end