11 lines
487 B
C#
11 lines
487 B
C#
using DepartmentContract.BindingModels;
|
||
using DepartmentContract.ViewModels;
|
||
using ToolsModule.ManagmentEntity;
|
||
|
||
namespace DepartmentContract.Logics.IGenericEntityLogic
|
||
{
|
||
/// <summary>
|
||
/// Логика работы со связями сотрудников и должностей
|
||
/// </summary>
|
||
public interface IEmployeePostLogic : IGenericEntityLogic<EmployeePostGetBindingModel, EmployeePostSetBindingModel, EmployeePostListViewModel, EmployeePostViewModel> { }
|
||
} |