class Holding
Attributes
symbol[RW]
Public Class Methods
new(symbol, shares)
click to toggle source
# File lib/Holding.rb, line 6 def initialize(symbol, shares) @symbol = symbol @shares = shares end