using System; using System.Threading.Tasks; using DevHive.Common.Models.Identity; namespace DevHive.Services.Interfaces { public interface IRoleService { Task CreateRole(RoleModel roleServiceModel); Task GetRoleById(Guid id); Task UpdateRole(RoleModel roleServiceModel); Task DeleteRole(Guid id); } }