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