9 lines
177 B
C#
9 lines
177 B
C#
|
namespace CarRepairShopContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IWorkProcess
|
|||
|
{
|
|||
|
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
|
|||
|
}
|
|||
|
|
|||
|
}
|