Class: PortfolioManager::Xml::DemandTrackingType
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::DemandTrackingType
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}demandTrackingType
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(demand = nil, demandCost = nil) ⇒ DemandTrackingType
constructor
A new instance of DemandTrackingType.
Constructor Details
#initialize(demand = nil, demandCost = nil) ⇒ DemandTrackingType
Returns a new instance of DemandTrackingType.
7240 7241 7242 7243 |
# File 'lib/portfolio_manager/xml.rb', line 7240 def initialize(demand = nil, demandCost = nil) @demand = demand @demandCost = demandCost end |
Instance Attribute Details
#demand ⇒ Object
7236 7237 7238 7239 7240 7241 7242 7243 7244 |
# File 'lib/portfolio_manager/xml.rb', line 7236 class DemandTrackingType attr_accessor :demand attr_accessor :demandCost def initialize(demand = nil, demandCost = nil) @demand = demand @demandCost = demandCost end end |
#demandCost ⇒ Object
7236 7237 7238 7239 7240 7241 7242 7243 7244 |
# File 'lib/portfolio_manager/xml.rb', line 7236 class DemandTrackingType attr_accessor :demand attr_accessor :demandCost def initialize(demand = nil, demandCost = nil) @demand = demand @demandCost = demandCost end end |