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