public Submit_Incident_Report_Builder()
 {
     _handler = new Report_Incident_Handler();       // Instantialise the handler to submit/draft the report.
 }
 protected void LoadForEditingReport()
 {
     rih = new Report_Incident_Handler();
     PopulateIncidentForm(_selected_incident_Report, _selected_incident_Report.GetLatestVersion());
 }
 protected override void LoadForReport()
 {
     _handler = new Report_Incident_Handler();       // Instantialise the handler to load the report for submitting/drafting.
     if (_selected_incident_Report == null)
     { LoadForNewReport(); }
     else { LoadForDraftedReport(); }
 }