DepartmentProject/DepartmentPortal/Department/DepartmentContract/Services/IGenericEntityService/IEmployeeService.cs

10 lines
338 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
using ToolsModule.Interfaces;
namespace DepartmentContract.Services.IGenericEntityService
{
/// <summary>
/// Хранение сотрудников
/// </summary>
public interface IEmployeeService : IGenericEntityService<EmployeeGetBindingModel, EmployeeSetBindingModel> { }
}