SushiBarBase/SushiBar/SushiBarContracts/BusinessLogicsContracts/IWorkProcess.cs
2024-05-08 08:52:27 +04:00

8 lines
171 B
C#

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