Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -27,7 +27,8 @@ public async Task<GetLegalEntityResponse> Handle(GetLegalEntityQuery message)
.Where(l =>
l.LegalEntityId == message.LegalEntityId &&
l.Account.HashedId == message.AccountHashedId &&
(l.PendingAgreementId != null || l.SignedAgreementId != null))
(l.PendingAgreementId != null || l.SignedAgreementId != null) &&
l.Deleted == null)
.ProjectTo<LegalEntity>(_configurationProvider, new
{
accountHashedId = message.AccountHashedId

0 comments on commit 8ed98b0

Please sign in to comment.