Class: Business
- Inherits:
-
Object
- Object
- Business
- Defined in:
- app/models/business.rb
Overview
Instance Attribute Summary (collapse)
-
- (String) description
The description of the Business.
-
- (String) location
The location of the Business.
-
- (String) name
The name of the Business.
-
- (String) type
The type of the Business.
Instance Attribute Details
- (String) description
Returns the description of the Business.
7 8 9 |
# File 'app/models/business.rb', line 7 def description @description end |
- (String) location
Returns the location of the Business.
10 11 12 |
# File 'app/models/business.rb', line 10 def location @location end |
- (String) name
Returns the name of the Business.
4 5 6 |
# File 'app/models/business.rb', line 4 def name @name end |
- (String) type
Returns the type of the Business.
13 14 15 |
# File 'app/models/business.rb', line 13 def type @type end |