refactor(Application.Envelopes.Queries.EnvelopeStatus): rename as EnvelopeStatusQuery

This commit is contained in:
2025-09-01 11:06:41 +02:00
parent c5c040fb15
commit ef7e694c9f
10 changed files with 12 additions and 12 deletions

View File

@@ -69,7 +69,7 @@ public class EnvelopeController : ControllerBase
if (envelope.Id is int id)
envelopes = envelopes.Where(e => e.Id == id);
if (envelope.Status is EnvelopeStatus status)
if (envelope.Status is EnvelopeStatusQuery status)
envelopes = envelopes.Where(e => e.Status == status);
if (envelope.Uuid is string uuid)