public async Task <IActionResult> PostWorkflow([FromQuery] byte[] sig, [FromServices] HttpPostReleaseTeksCommand2 command) { if (command == null) { throw new ArgumentNullException(nameof(command)); } _Logger.LogInformation("POST postkeys triggered."); return(await command.Execute(sig, Request)); }