using System; using System.Threading.Tasks; using Data.Models.Interfaces.Database; using DevHive.Data.Models; using Microsoft.EntityFrameworkCore; namespace DevHive.Data.Repositories { public class RoleRepository : IRepository { private readonly DbContext _context; public RoleRepository(DbContext context) { this._context = context; } public async Task AddAsync(Role entity) { throw new NotImplementedException(); } public async Task GetByIdAsync(Guid id) { throw new NotImplementedException(); } public async Task EditAsync(Role newEntity) { throw new NotImplementedException(); } public async Task DeleteAsync(Role entity) { throw new NotImplementedException(); } public async Task DoesNameExist(string name) { throw new NotImplementedException(); } public async Task DoesRoleExist(Guid id) { throw new NotImplementedException(); } } }