aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/ITechnologyService.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-17 13:38:24 +0200
committertranstrike <transtrike@gmail.com>2021-01-17 13:38:24 +0200
commit83f63ad729d585d597bdcf0afc05b7d56344223e (patch)
treeede845ad2790fe6f6f975f3cc5d776782adecf59 /src/DevHive.Services/Interfaces/ITechnologyService.cs
parentb4454f83c3b7d668fc8b18714a659b91576882be (diff)
downloadDevHive-83f63ad729d585d597bdcf0afc05b7d56344223e.tar
DevHive-83f63ad729d585d597bdcf0afc05b7d56344223e.tar.gz
DevHive-83f63ad729d585d597bdcf0afc05b7d56344223e.zip
Lang&Tech layers now return id on Create
Diffstat (limited to 'src/DevHive.Services/Interfaces/ITechnologyService.cs')
-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 9e1e955..9c5661d 100644
--- a/src/DevHive.Services/Interfaces/ITechnologyService.cs
+++ b/src/DevHive.Services/Interfaces/ITechnologyService.cs
@@ -6,7 +6,7 @@ namespace DevHive.Services.Interfaces
{
public interface ITechnologyService
{
- Task<bool> Create(CreateTechnologyServiceModel technologyServiceModel);
+ Task<Guid> Create(CreateTechnologyServiceModel technologyServiceModel);
Task<CreateTechnologyServiceModel> GetTechnologyById(Guid id);