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

10 lines
366 B
C#
Raw Normal View History

using DepartmentBusinessLogic.BindingModels;
using ModuleTools.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение связей сотрудников и должностей
/// </summary>
public interface IEmployeePostService : IGenerticEntityService<EmployeePostGetBindingModel, EmployeePostSetBindingModel> { }
}