PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/BusinessLogicsContracts/IWorkProcess.cs

14 lines
290 B
C#
Raw Normal View History

2024-04-22 20:09:58 +04:00
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);
}
}