public Guid CreateIncidentPersonOther(Guid incidentId, DTO.IncidentPersonOtherDetails details)
        {
            var person = CreateReportEntity(incidentId, details,
                                            (agency, id) => new PublicSafetyPerson(IdentityId, agency, id),
                                            (report, other) => report.People.Add(other));

            return(person.Id);
        }
 public void UpdateIncidentPersonOther(DTO.IncidentPersonOtherDetails details)
 {
     Update <PublicSafetyPerson, DTO.IncidentPersonOtherDetails>(details);
 }