Class: Business

Inherits:
Object
  • Object
show all
Defined in:
app/models/business.rb

Overview

Information about the Business that the Provider has.

Instance Attribute Summary (collapse)

Instance Attribute Details

- (String) description

Returns the description of the Business.

Returns:

  • (String)

    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.

Returns:

  • (String)

    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.

Returns:

  • (String)

    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.

Returns:

  • (String)

    the type of the Business.



13
14
15
# File 'app/models/business.rb', line 13

def type
  @type
end