DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/Interfaces/IPostService.cs

10 lines
303 B
C#

using DepartmentBusinessLogic.BindingModels;
using ToolsModule.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение должностей
/// </summary>
public interface IPostService : IGenerticEntityService<PostGetBindingModel, PostSetBindingModel> { }
}