8 lines
192 B
C#
Raw Normal View History

2024-06-21 22:49:53 +04:00
namespace SecuritySystemContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}