using System; using System.Threading.Tasks; using DevHive.Data.Repositories; using DevHive.Services.Models.Identity.Role; using Microsoft.AspNetCore.Mvc; namespace DevHive.Services.Services { public class RoleService { private readonly DevHiveContext _context; public RoleService(DevHiveContext context) { this._context = context; } public Task CreateRole(RoleServiceModel roleServiceModel) { throw new NotImplementedException(); } public Task GetRoleById(Guid id) { throw new NotImplementedException(); } public Task UpdateRole(RoleServiceModel roleServiceModel) { throw new NotImplementedException(); } public Task DeleteRole(Guid id) { throw new NotImplementedException(); } } }