16 lines
410 B
C#
16 lines
410 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FurnitureAssemblyContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
// Интерфейс для класса, имитирующего работу
|
|||
|
public interface IWorkProcess
|
|||
|
{
|
|||
|
// Запуск работы
|
|||
|
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
|
|||
|
}
|
|||
|
}
|