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