10 lines
315 B
C#
10 lines
315 B
C#
using SecurityContract.BindingModels;
|
|
using ToolsModule.ManagmentEntity;
|
|
|
|
namespace SecurityContract.Services.IGenericEntityService
|
|
{
|
|
/// <summary>
|
|
/// Хранение ролей
|
|
/// </summary>
|
|
public interface IRoleService : IGenericEntityService<RoleGetBindingModel, RoleSetBindingModel> { }
|
|
} |