2021-04-05 12:25:10 +04:00
|
|
|
|
using DepartmentBusinessLogic.BindingModels;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Interfaces;
|
2021-04-05 12:25:10 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение должностей
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IPostService : IGenerticEntityService<PostGetBindingModel, PostSetBindingModel> { }
|
|
|
|
|
}
|