blob: a7a0e475cf950d39641a6a238b8d26ff154db262 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Threading.Tasks;
using DevHive.Services.Models.Identity.Role;
namespace DevHive.Services.Interfaces
{
public interface IRoleService
{
Task<Guid> CreateRole(RoleServiceModel roleServiceModel);
Task<RoleServiceModel> GetRoleById(Guid id);
Task<bool> UpdateRole(RoleServiceModel roleServiceModel);
Task<bool> DeleteRole(Guid id);
}
}
|