public IActionResult Post([FromBody] OperationModel operationModel)
 {
     _logger.LogInformation("Creating result.");
     return(Ok(_operationService.ExecuteOperation(operationModel)));
 }