DepartmentProject/DepartmentPortal/Security/SecurityBusinessLogic/Interfaces/IUserRoleService.cs

10 lines
346 B
C#
Raw Normal View History

using ModuleTools.Interfaces;
using SecurityBusinessLogic.BindingModels;
namespace SecurityBusinessLogic.Interfaces
{
/// <summary>
/// Хранение связей пользователей с ролями
/// </summary>
public interface IUserRoleService : IGenerticEntityService<UserRoleGetBindingModel, UserRoleSetBindingModel> { }
}