using TravelCompanyContracts.BusinessLogicsContracts; namespace TravelCompanyContracts.BusinessLogicContracts { public interface IWorkProcess { /// /// Запуск работ /// void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic); } }