private static void insertArrestReportParties(ArrestReportAdditionalParty party, Guid arrestReportId)
        {
            var arrestReportPartyDoc = new ArrestReportPartyDoc
            {
                PartyType      = (int)party.PartyType,
                FirstName      = party.FirstName,
                LastName       = party.LastName,
                DOB            = party.DOB,
                ArrestReportId = arrestReportId
            };

            Globals.Store.arrestReportPartyCollection.Insert(arrestReportPartyDoc);
        }
        private static void insertArrestReportParties(ArrestReportAdditionalParty party, Guid arrestReportId)
        {
            var arrestReportPartyDoc = new ArrestReportPartyDoc
            {
                PartyType = (int)party.PartyType,
                FirstName = party.FirstName,
                LastName  = party.LastName,
                DOB       = party.DOB
            };
            List <ArrestReportPartyDoc> arrestReportPartyDocs;

            if (!Globals.Store.arrestReportPartyDict.TryGetValue(arrestReportId, out arrestReportPartyDocs))
            {
                arrestReportPartyDocs = new List <ArrestReportPartyDoc>();
                Globals.Store.arrestReportPartyDict.Add(arrestReportId, arrestReportPartyDocs);
            }
            arrestReportPartyDocs.Add(arrestReportPartyDoc);
        }