17 lines
846 B
C#
17 lines
846 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 BasicDepartmentBusinessLogic : GenericBusinessLogic<BasicDepartmentGetBindingModel, BasicDepartmentSetBindingModel, BasicDepartmentListViewModel, BasicDepartmentViewModel>, IBasicDepartmentLogic
|
|||
|
{
|
|||
|
public BasicDepartmentBusinessLogic(IBasicDepartmentService service) : base(service, "Базовые кафедры", AccessOperation.БазовыеКафедры) { }
|
|||
|
}
|
|||
|
}
|