public void DeleteArrestCharge()
 {
     SetUpArrestCharge();
     _arrestReportCommandService.DeleteArrestCharge(_arrestCharge.Id);
     _arrestCharge.ModifiedBy.Should().Be(_identityId);
     _reportsUnitOfWork.Verify(mock => mock.Remove(It.IsAny <ArrestCharge>()), Times.Once());
     _reportsUnitOfWork.Verify(mock => mock.Commit(It.IsAny <ConcurrencyMode>()), Times.Once());
 }