diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-09 15:27:55 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-09 15:27:55 +0300 |
| commit | 4147c287ad90a05eae551d4ccfdccc707bebd86f (patch) | |
| tree | 24acd52ab1240dc34b04db280b9c7439c760231a /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobProgressViewVM.cs | |
| parent | ca96477441518c8300474a317e34cb5e7e1550fc (diff) | |
| download | Tango-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.cs | 31 |
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() + { + + } + } +} |
