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