Class: OrcaApi::PatientService::PublicInsurance
- Inherits:
-
HealthPublicInsuranceCommon
- Object
- Service
- HealthPublicInsuranceCommon
- OrcaApi::PatientService::PublicInsurance
- Defined in:
- lib/orca_api/patient_service/public_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/public_insurance.rb', line 25 def update(id, args) super( id, { "PublicInsurance_Information" => { "PublicInsurance_Info" => Array(args["PublicInsurance_Info"]) }, "Patient_Select_Information" => Array(args["Patient_Select_Information"]) } ) end |