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

11 lines
474 B
C#
Raw Normal View History

2022-03-27 14:51:27 +04:00
using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
using ToolsModule.ManagmentEntity;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы с базовыми кафедрами
/// </summary>
public interface IBasicDepartmentLogic : IGenericEntityLogic<BasicDepartmentGetBindingModel, BasicDepartmentSetBindingModel, BasicDepartmentListViewModel, BasicDepartmentViewModel> { }
}