5 include DataMapper::Resource
6 include DataMapper::Validate
9 one_to_one :order_account_type
11 many_to_one :order_user, :accessor => :protected
13 property :cc_number, String
14 property :account_number, String
15 property :expiration_month, Fixnum, :length => 2
16 property :expiration_year, Fixnum, :length => 4
17 property :credit_ccv, Fixnum, :length => 5
18 property :routing_number, String, :length => 20
19 property :bank_name, String, :length => 50