aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-07-09 15:27:55 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-07-09 15:27:55 +0300
commit4147c287ad90a05eae551d4ccfdccc707bebd86f (patch)
tree24acd52ab1240dc34b04db280b9c7439c760231a /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs
parentca96477441518c8300474a317e34cb5e7e1550fc (diff)
downloadTango-4147c287ad90a05eae551d4ccfdccc707bebd86f.tar.gz
Tango-4147c287ad90a05eae551d4ccfdccc707bebd86f.zip
Refactored job progress handling !!!
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs
new file mode 100644
index 000000000..4e848bb53
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.Entities;
+using Tango.PPC.Common;
+
+namespace Tango.PPC.Jobs.ViewModels
+{
+ public class JobProgressViewVM : PPCViewModel
+ {
+ private Job _job;
+
+ public Job Job
+ {
+ get { return _job; }
+ set { _job = value; RaisePropertyChangedAuto(); }
+ }
+
+ public JobProgressViewVM()
+ {
+
+ }
+
+ public override void OnApplicationStarted()
+ {
+
+ }
+ }
+}