blob: 5eac98c45a36e6fa06cd5d17490fa401c873485f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;
using Tango.PPC.Common.Connection;
using Tango.PPC.Common.Notifications;
namespace Tango.PPC.Jobs.AppBarItems
{
public class JobProgressAppBarItem : AppBarItem
{
[TangoInject]
public IMachineProvider MachineProvider { get; set; }
public JobProgressAppBarItem()
{
TangoIOC.Default.Inject(this);
}
public override Type ViewType
{
get
{
return typeof(JobProgressAppBarItemView);
}
}
}
}
|