10 lines
369 B
C#
10 lines
369 B
C#
using SecurityContract.BindingModels;
|
||
using ToolsModule.Interfaces;
|
||
|
||
namespace SecurityContract.Interfaces.IGenericEntityService
|
||
{
|
||
/// <summary>
|
||
/// Хранение связей пользователей с ролями
|
||
/// </summary>
|
||
public interface IUserRoleService : IGenericEntityService<UserRoleGetBindingModel, UserRoleSetBindingModel> { }
|
||
} |