class Account

Attributes

accountNumber[RW]
holdings[RW]
routingNumber[RW]
type[RW]

Public Class Methods

new(accountNumber, type) click to toggle source
# File lib/Account.rb, line 8
def initialize(accountNumber, type)
    @accountNumber = accountNumber
    @type = type
    @holdings = Array.new
    @routing = -1
end