Class: Cb::CbResume::CbCompanyExperience
- Inherits:
-
Object
- Object
- Cb::CbResume::CbCompanyExperience
- Defined in:
- lib/cb/models/cb_resume.rb
Instance Attribute Summary collapse
-
#company_name ⇒ Object
Returns the value of attribute company_name.
-
#details ⇒ Object
Returns the value of attribute details.
-
#end_date ⇒ Object
Returns the value of attribute end_date.
-
#is_current ⇒ Object
Returns the value of attribute is_current.
-
#job_title ⇒ Object
Returns the value of attribute job_title.
-
#start_date ⇒ Object
Returns the value of attribute start_date.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ CbCompanyExperience
constructor
A new instance of CbCompanyExperience.
Constructor Details
#initialize(args = {}) ⇒ CbCompanyExperience
Returns a new instance of CbCompanyExperience.
96 97 98 99 100 101 102 103 |
# File 'lib/cb/models/cb_resume.rb', line 96 def initialize(args = {}) @job_title = args['JobTitle'] || '' @company_name = args['CompanyName'] || '' @start_date = args['StartDate'] || '' @end_date = args['EndDate'] || '' @is_current = args['IsCurrent'] || '' @details = args['Details'] || '' end |
Instance Attribute Details
#company_name ⇒ Object
Returns the value of attribute company_name.
94 95 96 |
# File 'lib/cb/models/cb_resume.rb', line 94 def company_name @company_name end |
#details ⇒ Object
Returns the value of attribute details.
94 95 96 |
# File 'lib/cb/models/cb_resume.rb', line 94 def details @details end |
#end_date ⇒ Object
Returns the value of attribute end_date.
94 95 96 |
# File 'lib/cb/models/cb_resume.rb', line 94 def end_date @end_date end |
#is_current ⇒ Object
Returns the value of attribute is_current.
94 95 96 |
# File 'lib/cb/models/cb_resume.rb', line 94 def is_current @is_current end |
#job_title ⇒ Object
Returns the value of attribute job_title.
94 95 96 |
# File 'lib/cb/models/cb_resume.rb', line 94 def job_title @job_title end |
#start_date ⇒ Object
Returns the value of attribute start_date.
94 95 96 |
# File 'lib/cb/models/cb_resume.rb', line 94 def start_date @start_date end |