7 lines
170 B
C#
Raw Normal View History

2024-04-21 20:39:51 +04:00
namespace ShipyardContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}