10 lines
323 B
C#
10 lines
323 B
C#
|
using DepartmentBusinessLogic.BindingModels;
|
|||
|
using ModuleTools.Interfaces;
|
|||
|
|
|||
|
namespace DepartmentBusinessLogic.Interfaces
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение преподавателей
|
|||
|
/// </summary>
|
|||
|
public interface ILecturerService : IGenerticEntityService<LecturerGetBindingModel, LecturerSetBindingModel> { }
|
|||
|
}
|