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 { /// /// Represents a job progress . /// /// public class JobProgressAppBarItem : AppBarItem { /// /// Gets or sets the machine provider. /// [TangoInject] public IMachineProvider MachineProvider { get; set; } /// /// Initializes a new instance of the class. /// public JobProgressAppBarItem() { TangoIOC.Default.Inject(this); } /// /// Gets or sets the view type. /// public override Type ViewType { get { return typeof(JobProgressAppBarItemView); } } } }