aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/IMachineProvider.cs
blob: 5b5f1e588eaa67b9ea874d7ab3a8bcdf5be5a218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.Integration.ExternalBridge;
using Tango.Integration.Operation;

namespace Tango.PPC.Common.Connection
{
    public interface IMachineProvider
    {
        event EventHandler<MachineOperatorChangedEventArgs> MachineOperatorChanged;

        Machine Machine { get; }

        IMachineOperator MachineOperator { get; }

        void Init();
    }
}