PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/BusinessLogicsContracts/IWorkProcess.cs
2024-04-22 20:09:58 +04:00

14 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
}
}