2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Interfaces;
|
2021-04-01 21:30:29 +04:00
|
|
|
|
using SecurityBusinessLogic.BindingModels;
|
|
|
|
|
|
|
|
|
|
namespace SecurityBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение связей пользователей с ролями
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IUserRoleService : IGenerticEntityService<UserRoleGetBindingModel, UserRoleSetBindingModel> { }
|
|
|
|
|
}
|