2021-04-02 22:44:29 +04:00
|
|
|
|
using DepartmentBusinessLogic.BindingModels;
|
|
|
|
|
using ModuleTools.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-04-05 12:25:10 +04:00
|
|
|
|
/// Хранение связей сотрудников и должностей
|
2021-04-02 22:44:29 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IEmployeePostService : IGenerticEntityService<EmployeePostGetBindingModel, EmployeePostSetBindingModel> { }
|
|
|
|
|
}
|