aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/ITechnologyService.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-26 15:38:40 +0200
committertranstrike <transtrike@gmail.com>2021-01-26 15:38:40 +0200
commitbddc0b0566bc19e936ccae9d3aa16b6e0116b186 (patch)
tree54db0a9aeafda117b85086cad6d5b9136bbf94ff /src/DevHive.Services/Interfaces/ITechnologyService.cs
parent93c14acb17f4b845c9e2b6781a6a3c10e23b6bf5 (diff)
downloadDevHive-bddc0b0566bc19e936ccae9d3aa16b6e0116b186.tar
DevHive-bddc0b0566bc19e936ccae9d3aa16b6e0116b186.tar.gz
DevHive-bddc0b0566bc19e936ccae9d3aa16b6e0116b186.zip
GetLanguages&GetTechnologies implmenented
Diffstat (limited to 'src/DevHive.Services/Interfaces/ITechnologyService.cs')
-rw-r--r--src/DevHive.Services/Interfaces/ITechnologyService.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DevHive.Services/Interfaces/ITechnologyService.cs b/src/DevHive.Services/Interfaces/ITechnologyService.cs
index 9c5661d..1d4fa8b 100644
--- a/src/DevHive.Services/Interfaces/ITechnologyService.cs
+++ b/src/DevHive.Services/Interfaces/ITechnologyService.cs
@@ -1,4 +1,5 @@
using System;
+using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Services.Models.Technology;
@@ -9,6 +10,7 @@ namespace DevHive.Services.Interfaces
Task<Guid> Create(CreateTechnologyServiceModel technologyServiceModel);
Task<CreateTechnologyServiceModel> GetTechnologyById(Guid id);
+ HashSet<ReadTechnologyServiceModel> GetTechnologies();
Task<bool> UpdateTechnology(UpdateTechnologyServiceModel updateTechnologyServiceModel);