Class: Renalware::Patients::ClinicalSummariesController

Inherits:
BaseController show all
Defined in:
app/controllers/renalware/patients/clinical_summaries_controller.rb

Instance Method Summary collapse

Methods inherited from BaseController

#patient

Instance Method Details

#showObject



11
12
13
14
# File 'app/controllers/renalware/patients/clinical_summaries_controller.rb', line 11

def show
  clinical_summary = Renal::ClinicalSummaryPresenter.new(patient)
  render :show, locals: { clinical_summary: clinical_summary, patient: patient }
end