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

10 lines
356 B
C#

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