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