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

10 lines
323 B
C#

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