ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IWorkProcess.cs

14 lines
303 B
C#
Raw Normal View History

2024-05-12 19:04:40 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}