blob: 2c7195c4c81522bfb620b66a6f12cf256e140193 (
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.Common.Models.Identity;
namespace DevHive.Services.Interfaces
{
public interface IRoleService
{
Task<bool> CreateRole(RoleModel roleServiceModel);
Task<RoleModel> GetRoleById(Guid id);
Task<bool> UpdateRole(RoleModel roleServiceModel);
Task<bool> DeleteRole(Guid id);
}
}
|