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

10 lines
355 B
C#

using DepartmentBusinessLogic.BindingModels;
using ToolsModule.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение должностей преподавателей
/// </summary>
public interface ILecturerPostService : IGenericEntityService<LecturerPostGetBindingModel, LecturerPostSetBindingModel> { }
}