10 lines
203 B
C#
10 lines
203 B
C#
|
namespace CarServiceContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ICustomerRoleImitationLogic
|
|||
|
{
|
|||
|
bool GenerateRequestData();
|
|||
|
bool GenerateWorksInRequest();
|
|||
|
bool GeneratePayments();
|
|||
|
}
|
|||
|
}
|