blob: 41be789edcb5cd08feeb4a10316fffa46fb90be7 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
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;
/// <summary>
/// Gets or sets the name of the thread. Using in print
/// </summary>
/// <value>
/// The name of the thread.
/// </value>
public string ThreadName
{
get { return _threadName; }
set
{
_threadName = value;
RaisePropertyChangedAuto();
}
}
private bool _isSelected;
/// <summary>
/// Gets or sets a value indicating whether this instance is selected.
/// </summary>
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;
}
}
}
|