public async Task <IActionResult> CreateBlob(NewBlobRequest entry)
        {
            await _azureStorageService.UploadBlobAsync(entry.Name, entry.Path);

            return(Ok());
        }