8 lines
186 B
C#
Raw Normal View History

2024-03-28 21:32:49 +04:00
namespace PizzeriaContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}