diff --git a/CarService/CarServiceBusinessLogic/BusinessLogics/CustomerRoleImitationLogic.cs b/CarService/CarServiceBusinessLogic/BusinessLogics/CustomerRoleImitationLogic.cs index d4b0437..0c88597 100644 --- a/CarService/CarServiceBusinessLogic/BusinessLogics/CustomerRoleImitationLogic.cs +++ b/CarService/CarServiceBusinessLogic/BusinessLogics/CustomerRoleImitationLogic.cs @@ -5,7 +5,7 @@ namespace CarServiceBusinessLogic.BusinessLogics /// /// Заглушка для роли клиента /// - public class CustomerRoleImitationLogic + public class CustomerRoleImitationLogic : ICustomerRoleImitationLogic { private readonly ICustomerLogic _customerLogic; private readonly IVehicleLogic _vehicleLogic; diff --git a/CarService/CarServiceContracts/BusinessLogicsContracts/ICustomerRoleImitationLogic.cs b/CarService/CarServiceContracts/BusinessLogicsContracts/ICustomerRoleImitationLogic.cs new file mode 100644 index 0000000..4998867 --- /dev/null +++ b/CarService/CarServiceContracts/BusinessLogicsContracts/ICustomerRoleImitationLogic.cs @@ -0,0 +1,9 @@ +namespace CarServiceContracts.BusinessLogicsContracts +{ + public interface ICustomerRoleImitationLogic + { + bool GenerateRequestData(); + bool GenerateWorksInRequest(); + bool GeneratePayments(); + } +}