public void CreateNewIncident()
 {
     _incidentReport = new Incident_Report();
     _incidentReport.IsDraft = false;    // Make sure it's not marked as draft any more.
     _reportVersion = new Incident_Report_Version();
     _reportVersion.Version = 1;
 }
 public void CreateDraftedIncident()
 {
     _incidentReport = new Incident_Report();
     _reportVersion = new Incident_Report_Version();
     _incidentReport.IsDraft = true;
     _reportVersion.Version = 0;
 }