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.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/DevHive.Services/Interfaces/ITechnologyService.cs b/src/DevHive.Services/Interfaces/ITechnologyService.cs
deleted file mode 100644
index 8f9510c..0000000
--- a/src/DevHive.Services/Interfaces/ITechnologyService.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Threading.Tasks;
-using DevHive.Services.Models.Technology;
-
-namespace DevHive.Services.Interfaces
-{
- public interface ITechnologyService
- {
- Task<Guid> CreateTechnology(CreateTechnologyServiceModel technologyServiceModel);
-
- Task<ReadTechnologyServiceModel> GetTechnologyById(Guid id);
- HashSet<ReadTechnologyServiceModel> GetTechnologies();
-
- Task<bool> UpdateTechnology(UpdateTechnologyServiceModel updateTechnologyServiceModel);
-
- Task<bool> DeleteTechnology(Guid id);
- }
-}