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