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); } }