blob: 1c40b049752ab39fb95b6a2c2b7dfa293dc5341f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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<Role> 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();
}
}
}
|