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

11 lines
416 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
using ToolsModule.Interfaces;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы со студентами
/// </summary>
public interface IStudentLogic : IGenericEntityLogic<StudentGetBindingModel, StudentSetBindingModel, StudentListViewModel, StudentViewModel> { }
}