2022-03-19 19:58:10 +04:00
|
|
|
|
using SecurityContract.BindingModels;
|
2022-03-20 10:10:44 +04:00
|
|
|
|
using ToolsModule.ManagmentEntity;
|
2022-03-19 19:58:10 +04:00
|
|
|
|
|
2022-03-19 22:48:13 +04:00
|
|
|
|
namespace SecurityContract.Services.IGenericEntityService
|
2022-03-19 19:58:10 +04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение ролей
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IRoleService : IGenericEntityService<RoleGetBindingModel, RoleSetBindingModel> { }
|
|
|
|
|
}
|