Class: Bright::SisApi::Synergy
- Inherits:
-
Base
show all
- Defined in:
- lib/bright/sis_apis/synergy.rb
Instance Method Summary
collapse
Methods inherited from Base
#connection_retry_wrapper, #filter_students_by_params
Instance Method Details
#create_student(student) ⇒ Object
16
17
18
|
# File 'lib/bright/sis_apis/synergy.rb', line 16
def create_student(student)
raise NotImplementedError
end
|
#get_schools(params) ⇒ Object
24
25
26
|
# File 'lib/bright/sis_apis/synergy.rb', line 24
def get_schools(params)
raise NotImplementedError
end
|
#get_student(params) ⇒ Object
8
9
10
|
# File 'lib/bright/sis_apis/synergy.rb', line 8
def get_student(params)
raise NotImplementedError
end
|
#get_student_by_api_id(api_id) ⇒ Object
4
5
6
|
# File 'lib/bright/sis_apis/synergy.rb', line 4
def get_student_by_api_id(api_id)
raise NotImplementedError
end
|
#get_students(params) ⇒ Object
12
13
14
|
# File 'lib/bright/sis_apis/synergy.rb', line 12
def get_students(params)
raise NotImplementedError
end
|
#update_student(student) ⇒ Object
20
21
22
|
# File 'lib/bright/sis_apis/synergy.rb', line 20
def update_student(student)
raise NotImplementedError
end
|