aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeService.cs
blob: 66fab6fdcff5b066b4449b7a41c02383a08f0778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.Integration.Operation;
using Tango.Transport;
using Tango.Transport.Transporters;

namespace Tango.Integration.Services
{
    public interface IExternalBridgeService : ITransporter
    {
        IMachineOperator MachineOperator { get; }
        Machine Machine { get; }
        bool IsStarted { get; }
        void Start();
        void Stop();
    }
}