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

10 lines
350 B
C#

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