aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/IRoleRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Interfaces/IRoleRepository.cs')
-rw-r--r--src/DevHive.Data/Interfaces/IRoleRepository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DevHive.Data/Interfaces/IRoleRepository.cs b/src/DevHive.Data/Interfaces/IRoleRepository.cs
index 48761db..a1080bb 100644
--- a/src/DevHive.Data/Interfaces/IRoleRepository.cs
+++ b/src/DevHive.Data/Interfaces/IRoleRepository.cs
@@ -8,8 +8,8 @@ namespace DevHive.Data.Interfaces
public interface IRoleRepository : IRepository<Role>
{
Task<Role> GetByNameAsync(string name);
-
+
Task<bool> DoesNameExist(string name);
Task<bool> DoesRoleExist(Guid id);
}
-} \ No newline at end of file
+}