public async Task <IActionResult> HttpPostCalcConfig([FromBody] BinaryContentResponse args, [FromServices] HttpPostContentReciever <RiskCalculationContentEntity> command)
 => await command.Execute(args);
 public async Task <IActionResult> HttpPostEks([FromBody] BinaryContentResponse args, [FromServices] HttpPostContentReciever <ExposureKeySetContentEntity> command)
 => await command.Execute(args);
 public async Task <IActionResult> HttpPostResourceBundle([FromBody] BinaryContentResponse args, [FromServices] HttpPostContentReciever <ResourceBundleContentEntity> command)
 => await command.Execute(args);
Beispiel #4
0
 public async Task <IActionResult> HttpPostEks(HttpRequest httpRequest, [FromServices] HttpPostContentReciever <ExposureKeySetContentEntity> command)
 => await command.Execute(httpRequest);
Beispiel #5
0
 public async Task <IActionResult> HttpPostCalcConfig(HttpRequest httpRequest, [FromServices] HttpPostContentReciever <RiskCalculationContentEntity> command)
 => await command.Execute(httpRequest);
Beispiel #6
0
 public async Task <IActionResult> HttpPostResourceBundle(HttpRequest httpRequest, [FromServices] HttpPostContentReciever <ResourceBundleContentEntity> command)
 => await command.Execute(httpRequest);
Beispiel #7
0
 public async Task <IActionResult> HttpPostManifest(HttpRequest httpRequest, [FromServices] HttpPostContentReciever <ManifestEntity> command)
 => await command.Execute(httpRequest);