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