blob: d3a45e57823e2897786a515c114e5a8542984d3d (
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(CreateRoleServiceModel roleServiceModel);
Task<ReadRoleServiceModel> GetRoleById(Guid id);
Task<bool> UpdateRole(UpdateRoleServiceModel roleServiceModel);
Task<bool> DeleteRole(Guid id);
}
}
|