Class: EmployeeMapper

Inherits:
Object
  • Object
show all
Includes:
XmlSchemaMapper
Defined in:
app/mappers/employee_mapper.rb

Overview

Note:

Сотрудник

Instance Attribute Summary collapse

Instance Attribute Details

#first_nameSTRING60

Имя minOccurs: 1, maxOccurs: 1

Returns:

  • (STRING60)


16
17
18
# File 'app/mappers/employee_mapper.rb', line 16

def first_name
  @first_name
end

#patronymicSTRING60

Отчество minOccurs: 0, maxOccurs: 1

Returns:

  • (STRING60)


20
21
22
# File 'app/mappers/employee_mapper.rb', line 20

def patronymic
  @patronymic
end

#surnameSTRING60

Фамилия minOccurs: 1, maxOccurs: 1

Returns:

  • (STRING60)


12
13
14
# File 'app/mappers/employee_mapper.rb', line 12

def surname
  @surname
end

#work_phone_numberPHONE

Рабочий номер телефона minOccurs: 0, maxOccurs: 1

Returns:

  • (PHONE)


24
25
26
# File 'app/mappers/employee_mapper.rb', line 24

def work_phone_number
  @work_phone_number
end