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