public void CreateArrestCharge()
        {
            var arrestChargeId = _arrestReportCommandService.CreateArrestCharge(It.IsAny <Guid>(), MockObject.NewArrestCharge);

            arrestChargeId.Should().NotBeEmpty();
            _reportsUnitOfWork.Verify(mock => mock.Commit(It.IsAny <ConcurrencyMode>()), Times.Once());
            _arrestReport.ArrestCharges.Should().NotBeNullOrEmpty();
        }