PIbd22_Kuznetsov_A.V._Sewin.../SewingDresses/SewingDressesContracts/BusinessLogicsContracts/IWorkProcess.cs

14 lines
289 B
C#
Raw Normal View History

2024-05-26 13:40:22 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SewingDressesContracts.BusinessLogicsContracts
{
public interface IWorkProcess
{
void DoWork(IImplementLogic implementLogic, IOrderLogic orderLogic);
}
}