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

10 lines
380 B
C#
Raw Normal View History

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