aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces')
-rw-r--r--src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs2
-rw-r--r--src/Data/DevHive.Data/Interfaces/IPostRepository.cs2
-rw-r--r--src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs2
3 files changed, 3 insertions, 3 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);
diff --git a/src/Data/DevHive.Data/Interfaces/IPostRepository.cs b/src/Data/DevHive.Data/Interfaces/IPostRepository.cs
index c24d596..5a04aed 100644
--- a/src/Data/DevHive.Data/Interfaces/IPostRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/IPostRepository.cs
@@ -10,7 +10,7 @@ namespace DevHive.Data.Interfaces
{
Task<bool> AddNewPostToCreator(Guid userId, Post post);
- Task<Post> GetPostByCreatorAndTimeCreatedAsync(Guid issuerId, DateTime timeCreated);
+ Task<Post> GetPostByCreatorAndTimeCreatedAsync(Guid creatorId, DateTime timeCreated);
Task<List<string>> GetFileUrls(Guid postId);
Task<bool> DoesPostExist(Guid postId);
diff --git a/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs b/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs
index 3e55b2d..f746d9d 100644
--- a/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs
@@ -8,7 +8,7 @@ namespace DevHive.Data.Interfaces
{
public interface ITechnologyRepository : IRepository<Technology>
{
- Task<Technology> GetByNameAsync(string name);
+ Task<Technology> GetByNameAsync(string technologyName);
HashSet<Technology> GetTechnologies();
Task<bool> DoesTechnologyExistAsync(Guid id);