2024-05-05 21:04:06 +04:00

8 lines
188 B
C#

namespace MotorPlantContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}