16 lines
363 B
C#
16 lines
363 B
C#
using AircraftPlantContracts.BusinessLogicsContracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AircraftPlantContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IWorkProcess
|
|
{
|
|
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
|
|
}
|
|
|
|
}
|