diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-22 18:33:29 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-22 18:33:29 +0300 |
| commit | 439ee2d80eab039c2dee00f697d2d814ec67247e (patch) | |
| tree | dccddef098f5960b42bd60ab817e5cf5678f4c07 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common | |
| parent | f3ed76912f8dc895023b2afb92d605ddde1f0c42 (diff) | |
| download | Tango-439ee2d80eab039c2dee00f697d2d814ec67247e.tar.gz Tango-439ee2d80eab039c2dee00f697d2d814ec67247e.zip | |
Added IsFree to base ViewModel.
Implemented IsFree on HardwareVersions & ColorLab modules.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs index 36e3994ad..08ddbc073 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs @@ -108,14 +108,6 @@ namespace Tango.MachineStudio.Common public bool IsModuleLoaded { get; private set; } /// <summary> - /// Initializes a new instance of the <see cref="StudioViewModel{Module}"/> class. - /// </summary> - public StudioViewModel() : base() - { - - } - - /// <summary> /// Called when another module has wants to navigate to this module with some arguments. /// </summary> /// <param name="args">The arguments.</param> @@ -187,15 +179,6 @@ namespace Tango.MachineStudio.Common public abstract class StudioViewModel<Module, T> : ViewModel<T>, IStudioViewModel where Module : IStudioModule where T : IView { /// <summary> - /// Initializes a new instance of the <see cref="StudioViewModel{Module, T}"/> class. - /// </summary> - /// <param name="view">The view.</param> - public StudioViewModel(T view) : base(view) - { - - } - - /// <summary> /// Called when the application has been started /// </summary> public virtual void OnApplicationStarted() |
