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

11 lines
497 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы с направлениями обучений
/// </summary>
public interface IEducationDirectionLogic : IGenericEntityLogic<EducationDirectionGetBindingModel, EducationDirectionSetBindingModel, EducationDirectionListViewModel, EducationDirectionViewModel> { }
}