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

11 lines
421 B
C#
Raw Permalink 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 IStudentLogic : IGenericEntityLogic<StudentGetBindingModel, StudentSetBindingModel, StudentListViewModel, StudentViewModel> { }
}