PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IWorkProcess.cs

8 lines
203 B
C#
Raw Normal View History

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