From 952a9a9a8b4a35a244b7e4767a8cac4909405839 Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Mon, 30 Aug 2021 13:02:23 +0100 Subject: [PATCH] refactor(*): Rename FileName to Filename in interface --- FileRepository/IFileRepository.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/FileRepository/IFileRepository.cs b/FileRepository/IFileRepository.cs index bf733d2..22ad940 100644 --- a/FileRepository/IFileRepository.cs +++ b/FileRepository/IFileRepository.cs @@ -14,15 +14,15 @@ namespace FileRepository /// Create a file in the repository. /// /// The file to store. - /// Returns a string fileName of the created file. + /// Returns a string filename of the created file. Task CreateFileAsync(RepoFile file); /// /// Read a file from the repository. /// - /// The file name of the file to read. + /// The file name of the file to read. /// Returns the file from the repository. - Task ReadFileAsync(string fileName); + Task ReadFileAsync(string filename); /// /// Update a file in the repository. @@ -34,8 +34,8 @@ namespace FileRepository /// /// Delete a file in the repository. /// - /// The file name of the file to delete. + /// The file name of the file to delete. /// Returns a boolean representing whether or not the delete was successful. - Task DeleteFileAsync(string fileName); + Task DeleteFileAsync(string filename); } }