Entität 'Receiver' zur Entität 'EnvelopeHistory' hinzugefügt.

This commit is contained in:
Developer 02
2024-06-03 16:13:00 +02:00
parent 0818b8d606
commit 8d5493969f
7 changed files with 40 additions and 6 deletions

View File

@@ -24,5 +24,14 @@ namespace EnvelopeGenerator.Web.Controllers.Test
{
return Ok(await _service.AccessCodeAlreadyRequested(envelopeId, userReference));
}
[HttpGet]
public async Task<IActionResult> GetAsyncWith(int? envelopeId = null, string? userReference = null, int? status = null)
{
return Ok(await _service.ReadAsync(envelopeId: envelopeId, userReference: userReference, status: status));
}
[NonAction]
public override Task<IActionResult> GetAll() => base.GetAll();
}
}