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.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/DevHive.Services/Interfaces/ITechnologyService.cs b/src/DevHive.Services/Interfaces/ITechnologyService.cs
new file mode 100644
index 0000000..33032e2
--- /dev/null
+++ b/src/DevHive.Services/Interfaces/ITechnologyService.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Threading.Tasks;
+using DevHive.Services.Models.Technology;
+
+namespace DevHive.Services.Interfaces
+{
+ public interface ITechnologyService
+ {
+ Task<bool> Create(CreateTechnologyServiceModel technologyServiceModel);
+
+ Task<TechnologyServiceModel> GetTechnologyById(Guid id);
+
+ Task<bool> UpdateTechnology(UpdateTechnologyServiceModel updateTechnologyServiceModel);
+
+ Task<bool> DeleteTechnology(Guid id);
+ }
+} \ No newline at end of file