ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IWorkProcess.cs
2024-05-12 19:04:40 +04:00

14 lines
303 B
C#

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);
}
}