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.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/DevHive.Data/Interfaces/ITechnologyRepository.cs b/src/DevHive.Data/Interfaces/ITechnologyRepository.cs
deleted file mode 100644
index d0de096..0000000
--- a/src/DevHive.Data/Interfaces/ITechnologyRepository.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-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> DoesTechnologyNameExistAsync(string technologyName);
- Task<Technology> GetByNameAsync(string name);
- }
-}