добавление интерфейса

This commit is contained in:
Мк Игорь 2023-04-09 12:08:32 +04:00
parent ad9f45d3ab
commit 191fd514aa
2 changed files with 10 additions and 1 deletions

View File

@ -5,7 +5,7 @@ namespace CarServiceBusinessLogic.BusinessLogics
/// <summary>
/// Заглушка для роли клиента
/// </summary>
public class CustomerRoleImitationLogic
public class CustomerRoleImitationLogic : ICustomerRoleImitationLogic
{
private readonly ICustomerLogic _customerLogic;
private readonly IVehicleLogic _vehicleLogic;

View File

@ -0,0 +1,9 @@
namespace CarServiceContracts.BusinessLogicsContracts
{
public interface ICustomerRoleImitationLogic
{
bool GenerateRequestData();
bool GenerateWorksInRequest();
bool GeneratePayments();
}
}