public async Task <IActionResult> GetAssetByName(string assetName, [FromQuery] string assetType)
 {
     try
     {
         return(Ok(_manager.GetMatchingAsset(assetName, assetType)));
     }
     catch (Exception ex)
     {
         return(ex.GetActionResult());
     }
 }