ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IWorkProcess.cs

8 lines
171 B
C#
Raw Permalink Normal View History

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