17 lines
972 B
C#
17 lines
972 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using DepartmentContract.Logics.IGenericEntityLogic;
|
|||
|
using DepartmentContract.Services.IGenericEntityService;
|
|||
|
using DepartmentContract.ViewModels;
|
|||
|
using ToolsModule.ManagmentEntity;
|
|||
|
using ToolsModule.ManagmentSecurity;
|
|||
|
|
|||
|
namespace DepartmentBusinessLogic.BusinessLogics.GenericBusinessLogic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Логика работы с оценками студентов за дисциплины
|
|||
|
/// </summary>
|
|||
|
public class StudentMarkPassedDisciplineBusinessLogic : GenericBusinessLogic<StudentMarkPassedDisciplineGetBindingModel, StudentMarkPassedDisciplineSetBindingModel, StudentMarkPassedDisciplineListViewModel, StudentMarkPassedDisciplineViewModel>, IStudentMarkPassedDisciplineLogic
|
|||
|
{
|
|||
|
public StudentMarkPassedDisciplineBusinessLogic(IStudentMarkPassedDisciplineService service) : base(service, "Оценки студентов", AccessOperation.ОценкиСтудентов) { }
|
|||
|
}
|
|||
|
}
|