8 lines
188 B
C#
Raw Normal View History

2024-05-05 21:04:06 +04:00
namespace MotorPlantContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}