aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/ITechnologyService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Interfaces/ITechnologyService.cs')
-rw-r--r--src/DevHive.Services/Interfaces/ITechnologyService.cs6
1 files changed, 3 insertions, 3 deletions
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
+}