aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/ITechnologyRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Interfaces/ITechnologyRepository.cs')
-rw-r--r--src/DevHive.Data/Interfaces/ITechnologyRepository.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/DevHive.Data/Interfaces/ITechnologyRepository.cs b/src/DevHive.Data/Interfaces/ITechnologyRepository.cs
new file mode 100644
index 0000000..7c126a4
--- /dev/null
+++ b/src/DevHive.Data/Interfaces/ITechnologyRepository.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Threading.Tasks;
+using DevHive.Data.Models;
+using DevHive.Data.Repositories.Interfaces;
+
+namespace DevHive.Data.Interfaces
+{
+ public interface ITechnologyRepository : IRepository<Technology>
+ {
+ Task<bool> DoesTechnologyExistAsync(Guid id);
+ Task<bool> DoesTechnologyNameExist(string technologyName);
+ }
+} \ No newline at end of file