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