18 lines
451 B
C#
18 lines
451 B
C#
|
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PrecastConcretePlantBusinessLogic.BusinessLogic
|
|||
|
{
|
|||
|
public interface IWorkProcess
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Запуск работ
|
|||
|
/// </summary>
|
|||
|
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
|
|||
|
}
|
|||
|
}
|