private async Task downloadFileFromAzure(string fileFullPath, string cloudFileName, string strAccountName, string strAccountKey, string strShareName)
 {
     await AzureHelper.FileDownloadFromAzure(fileFullPath, cloudFileName, strAccountName, strAccountKey, strShareName);
 }
 private async Task uploadFileToAzure(string fileFullPath, string cloudFileName, string accountName, string accountKey, string shareName)
 {
     //await AzureHelper.FileUploadToAzure(fileFullPath, cloudFileName, strAccountName, strAccountKey, strShareName);
     await AzureHelper.FileUploadToAzure(fileFullPath, cloudFileName, accountName, accountKey, shareName);
 }