8 lines
192 B
C#
Raw Normal View History

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