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