DepartmentProject/DepartmentPortal/Department/DepartmentContract/Services/IGenericEntityService/IPostService.cs

10 lines
329 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace DepartmentContract.Services.IGenericEntityService
{
/// <summary>
/// Хранение должностей
/// </summary>
public interface IPostService : IGenericEntityService<PostGetBindingModel, PostSetBindingModel> { }
}