public void UpdateArrestCharge()
        {
            SetUpArrestCharge();
            var arrestCharge = MockObject.NewArrestCharge;

            _arrestReportCommandService.UpdateArrestCharge(arrestCharge);
            _arrestCharge.CourtName.Should().Be(arrestCharge.CourtName);
            _arrestCharge.ModifiedBy.Should().Be(_identityId);
            _reportsUnitOfWork.Verify(mock => mock.Commit(It.IsAny <ConcurrencyMode>()), Times.Once());
        }