aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs')
-rw-r--r--src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs b/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
index 4771f91..ea0e8c6 100644
--- a/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
@@ -9,7 +9,7 @@ namespace DevHive.Data.Interfaces
public interface ILanguageRepository : IRepository<Language>
{
HashSet<Language> GetLanguages();
- Task<Language> GetByNameAsync(string name);
+ Task<Language> GetByNameAsync(string languageName);
Task<bool> DoesLanguageExistAsync(Guid id);
Task<bool> DoesLanguageNameExistAsync(string languageName);