aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-02-01 11:22:50 +0200
committertranstrike <transtrike@gmail.com>2021-02-01 11:22:50 +0200
commit94525df566a16fab3b499c8f83bafcfa29b0478a (patch)
tree44eb548a76ff33bd484e35c8ef6734eab5981968 /src/DevHive.Services/Interfaces
parent640f50e19bf8aa598fcd63c5e27c2eda2451d86c (diff)
downloadDevHive-94525df566a16fab3b499c8f83bafcfa29b0478a.tar
DevHive-94525df566a16fab3b499c8f83bafcfa29b0478a.tar.gz
DevHive-94525df566a16fab3b499c8f83bafcfa29b0478a.zip
Tech & Lang read models return ids
Diffstat (limited to 'src/DevHive.Services/Interfaces')
-rw-r--r--src/DevHive.Services/Interfaces/ITechnologyService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Services/Interfaces/ITechnologyService.cs b/src/DevHive.Services/Interfaces/ITechnologyService.cs
index 4f75dbe..8f9510c 100644
--- a/src/DevHive.Services/Interfaces/ITechnologyService.cs
+++ b/src/DevHive.Services/Interfaces/ITechnologyService.cs
@@ -9,7 +9,7 @@ namespace DevHive.Services.Interfaces
{
Task<Guid> CreateTechnology(CreateTechnologyServiceModel technologyServiceModel);
- Task<CreateTechnologyServiceModel> GetTechnologyById(Guid id);
+ Task<ReadTechnologyServiceModel> GetTechnologyById(Guid id);
HashSet<ReadTechnologyServiceModel> GetTechnologies();
Task<bool> UpdateTechnology(UpdateTechnologyServiceModel updateTechnologyServiceModel);