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