Class: Cb::CbResume::CbEducation

Inherits:
Object
  • Object
show all
Defined in:
lib/cb/models/implementations/cb_resume.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ CbEducation

Returns a new instance of CbEducation.



195
196
197
198
199
200
201
202
# File 'lib/cb/models/implementations/cb_resume.rb', line 195

def initialize(args = {})
  @school_name      = args['SchoolName'] || ''
  @major            = args['Major'] || ''
  @degree_name      = args['DegreeName'] || ''
  @degree_code      = args['DegreeCode'] || ''
  @graduation_date  = args['GraduationDate'] || ''
  @gpa              = args['GPA'] || ''
end

Instance Attribute Details

#degree_codeObject

Returns the value of attribute degree_code.



193
194
195
# File 'lib/cb/models/implementations/cb_resume.rb', line 193

def degree_code
  @degree_code
end

#degree_nameObject

Returns the value of attribute degree_name.



193
194
195
# File 'lib/cb/models/implementations/cb_resume.rb', line 193

def degree_name
  @degree_name
end

#gpaObject

Returns the value of attribute gpa.



193
194
195
# File 'lib/cb/models/implementations/cb_resume.rb', line 193

def gpa
  @gpa
end

#graduation_dateObject

Returns the value of attribute graduation_date.



193
194
195
# File 'lib/cb/models/implementations/cb_resume.rb', line 193

def graduation_date
  @graduation_date
end

#majorObject

Returns the value of attribute major.



193
194
195
# File 'lib/cb/models/implementations/cb_resume.rb', line 193

def major
  @major
end

#school_nameObject

Returns the value of attribute school_name.



193
194
195
# File 'lib/cb/models/implementations/cb_resume.rb', line 193

def school_name
  @school_name
end