aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Interfaces')
-rw-r--r--src/DevHive.Services/Interfaces/ILanguageService.cs10
-rw-r--r--src/DevHive.Services/Interfaces/ITechnologyService.cs6
2 files changed, 8 insertions, 8 deletions
diff --git a/src/DevHive.Services/Interfaces/ILanguageService.cs b/src/DevHive.Services/Interfaces/ILanguageService.cs
index f62bce7..eb45a8d 100644
--- a/src/DevHive.Services/Interfaces/ILanguageService.cs
+++ b/src/DevHive.Services/Interfaces/ILanguageService.cs
@@ -8,10 +8,10 @@ namespace DevHive.Services.Interfaces
{
Task<bool> CreateLanguage(CreateLanguageServiceModel createLanguageServiceModel);
- Task<LanguageServiceModel> GetLanguageById(Guid id);
+ Task<LanguageServiceModel> GetLanguageById(Guid languageId);
- Task<bool> UpdateLanguage(UpdateLanguageServiceModel languageServiceModel);
-
- Task<bool> DeleteLanguage(Guid id);
+ Task<bool> UpdateLanguage(Guid languageId, UpdateLanguageServiceModel languageServiceModel);
+
+ Task<bool> DeleteLanguage(Guid languageId);
}
-} \ No newline at end of file
+}
diff --git a/src/DevHive.Services/Interfaces/ITechnologyService.cs b/src/DevHive.Services/Interfaces/ITechnologyService.cs
index 33032e2..f0dfaca 100644
--- a/src/DevHive.Services/Interfaces/ITechnologyService.cs
+++ b/src/DevHive.Services/Interfaces/ITechnologyService.cs
@@ -10,8 +10,8 @@ namespace DevHive.Services.Interfaces
Task<TechnologyServiceModel> GetTechnologyById(Guid id);
- Task<bool> UpdateTechnology(UpdateTechnologyServiceModel updateTechnologyServiceModel);
-
+ Task<bool> UpdateTechnology(Guid technologyId, UpdateTechnologyServiceModel updateTechnologyServiceModel);
+
Task<bool> DeleteTechnology(Guid id);
}
-} \ No newline at end of file
+}