10 lines
328 B
C#
10 lines
328 B
C#
|
using SecurityContract.BindingModels;
|
|||
|
using ToolsModule.Interfaces;
|
|||
|
|
|||
|
namespace SecurityContract.Interfaces.IGenericEntityService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение пользователей
|
|||
|
/// </summary>
|
|||
|
public interface IUserService : IGenericEntityService<UserGetBindingModel, UserSetBindingModel> { }
|
|||
|
}
|