16 lines
613 B
C#
16 lines
613 B
C#
|
using DepartmentBusinessLogic.BindingModels;
|
|||
|
using DepartmentBusinessLogic.Interfaces;
|
|||
|
using DepartmentBusinessLogic.ViewModels;
|
|||
|
using ModuleTools.BusinessLogics;
|
|||
|
using ModuleTools.Enums;
|
|||
|
|
|||
|
namespace DepartmentBusinessLogic.BusinessLogics
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Логика работы со студентами
|
|||
|
/// </summary>
|
|||
|
public class StudentBusinessLogic : GenericBusinessLogic<StudentGetBindingModel, StudentSetBindingModel, StudentListViewModel, StudentViewModel>
|
|||
|
{
|
|||
|
public StudentBusinessLogic(IStudentService service) : base(service, "Студенты", AccessOperation.Студенты) { }
|
|||
|
}
|
|||
|
}
|