8 lines
177 B
C#
Raw Normal View History

2023-10-11 20:48:14 +04:00
namespace PlumbingRepairContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}