Skip to content

Commit

Permalink
Cloud Storage
Browse files Browse the repository at this point in the history
  • Loading branch information
KonduruKeerthi committed Jul 4, 2024
1 parent 33c0070 commit 7cbbf00
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ public async Task<IActionResult> EditDocument()
/// <summary>
/// Download file from AWS S3 cloud storage
/// </summary>
/// <param name="bucketName"></param>
/// <param name="key"></param>
/// <returns></returns>
public async Task<MemoryStream> GetDocumentFromS3()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ public async Task<IActionResult> UploadDocument()
/// <summary>
/// Upload file to AWS S3 cloud storage
/// </summary>
/// <param name="bucketName"></param>
/// <param name="key"></param>
/// <param name="stream"></param>
/// <returns></returns>
public async Task<MemoryStream> UploadDocumentToS3(MemoryStream stream)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ public async Task<IActionResult> EditDocument()
/// <summary>
/// Download file from Azure Blob cloud storage
/// </summary>
/// <param name="bucketName"></param>
/// <param name="key"></param>
/// <returns></returns>
public async Task<MemoryStream> GetDocumentFromAzure()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ public async Task<IActionResult> UploadDocument()
/// <summary>
/// Upload file to Azure Blob cloud storage
/// </summary>
/// <param name="bucketName"></param>
/// <param name="key"></param>
/// <param name="stream"></param>
/// <returns></returns>
public async Task<MemoryStream> UploadDocumentToAzure(MemoryStream stream)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ public async Task<IActionResult> EditDocument()
/// <summary>
/// Download file from Google
/// </summary>
/// <param name="bucketName"></param>
/// <param name="keyPath"></param>
/// <param name="fileName"></param>
/// <returns></returns>
public async Task<MemoryStream> GetDocumentFromGoogle()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ public async Task<IActionResult> UploadDocument()
/// <summary>
/// Upload file to Google
/// </summary>
/// <param name="bucketName"></param>
/// <param name="keyPath"></param>
/// <param name="fileName"></param>
/// <param name="stream"></param>
/// <returns></returns>
public async Task<MemoryStream> UploadDocumentToGoogle(MemoryStream stream)
Expand Down

0 comments on commit 7cbbf00

Please sign in to comment.