class Credit

Public Class Methods

new(_pDate, _type, _source, _amount) click to toggle source
# File lib/bill-nye/credit.rb, line 4
def initialize(_pDate, _type, _source, _amount)
        @pDate         = _pDate
        @type          = _type
        @uDate         = _pDate
        @source  = _source
        @amount  = _amount
end