aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Repositories
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-15 19:39:00 +0200
committertranstrike <transtrike@gmail.com>2020-12-15 19:39:00 +0200
commit85b41def10318ff04e72991008ba7d0e623a7674 (patch)
treeb23c4f15989c99110e7fd9dd9b006ac91fbfc1cf /src/DevHive.Data/Repositories
parent54d081a513117c732ab4d62312b440d37dfe0d67 (diff)
parent9b547cb43ec6a3d28d4f35cef15ac90e465aa695 (diff)
downloadDevHive-85b41def10318ff04e72991008ba7d0e623a7674.tar
DevHive-85b41def10318ff04e72991008ba7d0e623a7674.tar.gz
DevHive-85b41def10318ff04e72991008ba7d0e623a7674.zip
Merge branch 'dev' of github.com:Team-Kaleidoscope/DevHive into dev
Diffstat (limited to 'src/DevHive.Data/Repositories')
-rw-r--r--src/DevHive.Data/Repositories/RoleRepository.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/DevHive.Data/Repositories/RoleRepository.cs b/src/DevHive.Data/Repositories/RoleRepository.cs
new file mode 100644
index 0000000..5ddadab
--- /dev/null
+++ b/src/DevHive.Data/Repositories/RoleRepository.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Threading.Tasks;
+using Data.Models.Interfaces.Database;
+using DevHive.Data.Models;
+
+namespace DevHive.Data.Repositories
+{
+ public class RoleRepository : IRepository<Role>
+ {
+ public async Task AddAsync(Role entity)
+ {
+ throw new NotImplementedException();
+ }
+
+ //Find entity by id
+ public async Task<TEntity> GetByIdAsync(Guid id)
+ {
+ throw new NotImplementedException();
+ }
+
+ //Modify Entity from database
+ public async Task EditAsync(Role newEntity)
+ {
+ throw new NotImplementedException();
+ }
+
+ //Delete Entity from database
+ public async Task DeleteAsync(Role entity)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}