2021-04-03 08:05:01 +04:00
|
|
|
|
using DepartmentBusinessLogic.BindingModels;
|
|
|
|
|
using DepartmentBusinessLogic.Interfaces;
|
|
|
|
|
using DepartmentBusinessLogic.ViewModels;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.BusinessLogics;
|
|
|
|
|
using ToolsModule.Enums;
|
2021-04-03 08:05:01 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-04-03 22:04:11 +04:00
|
|
|
|
/// Логика работы с сотрудниками
|
2021-04-03 08:05:01 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class EmployeeBusinessLogic : GenericBusinessLogic<EmployeeGetBindingModel, EmployeeSetBindingModel, EmployeeListViewModel, EmployeeViewModel>
|
|
|
|
|
{
|
|
|
|
|
public EmployeeBusinessLogic(IEmployeeService service) : base(service, "Сотрудники", AccessOperation.Сотрудники) { }
|
|
|
|
|
}
|
|
|
|
|
}
|