using Microsoft.Win32; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL; using Tango.BL.ActionLogs; using Tango.BL.DTO; using Tango.BL.Entities; using Tango.BL.Enumerations; using Tango.Core.Commands; using Tango.MachineStudio.Common.Notifications; using Tango.MachineStudio.ThreadExtensions.Models; using Tango.SharedUI; namespace Tango.MachineStudio.ThreadExtensions.ViewModels { public class TestResultViewVM : ViewModel { private INotificationProvider _notification; private IActionLogManager _actionLogManager; #region Properties private string _threadName; /// /// Gets or sets the name of the thread. Using in print /// /// /// The name of the thread. /// public string ThreadName { get { return _threadName; } set { _threadName = value; RaisePropertyChangedAuto(); } } private bool _isSelected; /// /// Gets or sets a value indicating whether this instance is selected. /// public bool IsSelected { get { return _isSelected; } set { _isSelected = value; RaisePropertyChangedAuto(); } } private RmlExtensionTestResult _testResult; public RmlExtensionTestResult TestResult { get { return _testResult; } set { _testResult = value; RaisePropertyChangedAuto(); } } #endregion public TestResultViewVM(INotificationProvider notification, IActionLogManager actionLogManager) { _notification = notification; _actionLogManager = actionLogManager; } } }