DepartmentProject/DepartmentPortal/Department/DepartmentContract/Logics/IGenericEntityLogic/ILecturerPostLogic.cs

11 lines
488 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
using ToolsModule.Interfaces;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы со связями преподавателей и должностей
/// </summary>
public interface ILecturerPostLogic : IGenericEntityLogic<LecturerPostGetBindingModel, LecturerPostSetBindingModel, LecturerPostListViewModel, LecturerPostViewModel> { }
}