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