From 65f651e4889c3623c390b619b911da3663991d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D1=8C=D1=84=D0=B8=D1=8F=20=D0=A2=D1=83=D0=BA?= =?UTF-8?q?=D0=B0=D0=B5=D0=B2=D0=B0?= Date: Mon, 10 Apr 2023 15:36:47 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5?= =?UTF-8?q?=D0=B9=D0=B9=D1=81=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=B3=D0=BB=D1=83=D1=88=D0=BA=D0=B8=20=D1=81=D0=BE=D1=82=D1=80?= =?UTF-8?q?=D1=83=D0=B4=D0=BD=D0=B8=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BusinessLogics/EmployeeRoleImitationaLogic.cs | 2 +- .../IEmployeeRoleImitationaLogic.cs | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 School/SchoolContracts/BusinessLogicsContracts/IEmployeeRoleImitationaLogic.cs diff --git a/School/SchoolBusinessLogic/BusinessLogics/EmployeeRoleImitationaLogic.cs b/School/SchoolBusinessLogic/BusinessLogics/EmployeeRoleImitationaLogic.cs index 12350bb..4b22f96 100644 --- a/School/SchoolBusinessLogic/BusinessLogics/EmployeeRoleImitationaLogic.cs +++ b/School/SchoolBusinessLogic/BusinessLogics/EmployeeRoleImitationaLogic.cs @@ -10,7 +10,7 @@ namespace SchoolBusinessLogic.BusinessLogics /// /// Заглушка для роли сотрудника /// - public class EmployeeRoleImitationaLogic + public class EmployeeRoleImitationaLogic : IEmployeeRoleImitationaLogic { private readonly IEmployeeLogic _employeeLogic; private readonly ILessonLogic _lessonLogic; diff --git a/School/SchoolContracts/BusinessLogicsContracts/IEmployeeRoleImitationaLogic.cs b/School/SchoolContracts/BusinessLogicsContracts/IEmployeeRoleImitationaLogic.cs new file mode 100644 index 0000000..952dc90 --- /dev/null +++ b/School/SchoolContracts/BusinessLogicsContracts/IEmployeeRoleImitationaLogic.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SchoolContracts.BusinessLogicsContracts +{ + internal interface IEmployeeRoleImitationaLogic + { + } +}