добавление интерфеййся для заглушки сотрудника

This commit is contained in:
Альфия Тукаева 2023-04-10 15:36:47 +03:00
parent a47f81b60d
commit 65f651e488
2 changed files with 13 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace SchoolBusinessLogic.BusinessLogics
/// <summary> /// <summary>
/// Заглушка для роли сотрудника /// Заглушка для роли сотрудника
/// </summary> /// </summary>
public class EmployeeRoleImitationaLogic public class EmployeeRoleImitationaLogic : IEmployeeRoleImitationaLogic
{ {
private readonly IEmployeeLogic _employeeLogic; private readonly IEmployeeLogic _employeeLogic;
private readonly ILessonLogic _lessonLogic; private readonly ILessonLogic _lessonLogic;

View File

@ -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
{
}
}