DepartmentProject/DepartmentPortal/Security/SecurityContract/Services/IGenericEntityService/IRoleService.cs

10 lines
312 B
C#

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