Class: OrcaApi::PatientService::HealthInsurance
- Inherits:
-
HealthPublicInsuranceCommon
- Object
- Service
- HealthPublicInsuranceCommon
- OrcaApi::PatientService::HealthInsurance
- Defined in:
- lib/orca_api/patient_service/health_insurance.rb
Overview
患者保険情報を扱うサービス
Instance Attribute Summary
Attributes inherited from Service
Instance Method Summary collapse
-
#update(id, args) ⇒ Object
患者保険情報を更新する.
Methods inherited from HealthPublicInsuranceCommon
Methods inherited from Service
Constructor Details
This class inherits a constructor from OrcaApi::Service
Constructor Details
This class inherits a constructor from OrcaApi::Service
Instance Method Details
#update(id, args) ⇒ Object
患者保険情報を更新する
25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/orca_api/patient_service/health_insurance.rb', line 25 def update(id, args) super( id, { "HealthInsurance_Information" => { "HealthInsurance_Info" => Array(args["HealthInsurance_Info"]) }, "Patient_Select_Information" => Array(args["Patient_Select_Information"]) } ) end |