DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/Interfaces/IEmployeeService.cs

10 lines
317 B
C#

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