DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/BusinessLogics/StudentBusinessLogic.cs

16 lines
613 B
C#
Raw Normal View History

2021-04-12 16:57:29 +04:00
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.Interfaces;
using DepartmentBusinessLogic.ViewModels;
using ToolsModule.BusinessLogics;
using ToolsModule.Enums;
2021-04-12 16:57:29 +04:00
namespace DepartmentBusinessLogic.BusinessLogics
{
/// <summary>
/// Логика работы со студентами
/// </summary>
public class StudentBusinessLogic : GenericBusinessLogic<StudentGetBindingModel, StudentSetBindingModel, StudentListViewModel, StudentViewModel>
{
public StudentBusinessLogic(IStudentService service) : base(service, "Студенты", AccessOperation.Студенты) { }
}
}