SushiBarBase/SushiBar/SushiBarContracts/BusinessLogicsContracts/IWorkProcess.cs

8 lines
171 B
C#
Raw Normal View History

2024-05-08 08:52:27 +04:00
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}