2024-06-21 16:00:10 +04:00

9 lines
187 B
C#

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