aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-02-10 18:28:41 +0200
committerShlomo Hecht <shlomo@twine-s.com>2019-02-10 18:28:41 +0200
commita65868d1d77b1929b855abd0c19bdc08bc9cee9d (patch)
tree09486bed718fb096914780f33313fb82a0207c87 /Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
parent82179e1b69b62b971a04af571979e7d10c60fd7a (diff)
parentac9678197fc6142595089155d98442239a64e6d7 (diff)
downloadTango-a65868d1d77b1929b855abd0c19bdc08bc9cee9d.tar.gz
Tango-a65868d1d77b1929b855abd0c19bdc08bc9cee9d.zip
merge
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs76
1 files changed, 0 insertions, 76 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs b/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
index 0033b6697..93c0f2518 100644
--- a/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
+++ b/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
@@ -31,10 +31,6 @@ namespace Tango.BL.Entities
public event EventHandler<String> CommentsChanged;
- public event EventHandler<Boolean> ForceUpdateChanged;
-
- public event EventHandler<Boolean> StableChanged;
-
public event EventHandler<User> UserChanged;
protected String _version;
@@ -143,60 +139,6 @@ namespace Tango.BL.Entities
}
}
- protected Boolean _forceupdate;
-
- /// <summary>
- /// Gets or sets the machinestudioversionbase force update.
- /// </summary>
-
- [Column("FORCE_UPDATE")]
-
- public Boolean ForceUpdate
- {
- get
- {
- return _forceupdate;
- }
-
- set
- {
- if (_forceupdate != value)
- {
- _forceupdate = value;
-
- OnForceUpdateChanged(value);
-
- }
- }
- }
-
- protected Boolean _stable;
-
- /// <summary>
- /// Gets or sets the machinestudioversionbase stable.
- /// </summary>
-
- [Column("STABLE")]
-
- public Boolean Stable
- {
- get
- {
- return _stable;
- }
-
- set
- {
- if (_stable != value)
- {
- _stable = value;
-
- OnStableChanged(value);
-
- }
- }
- }
-
protected User _user;
/// <summary>
@@ -252,24 +194,6 @@ namespace Tango.BL.Entities
}
/// <summary>
- /// Called when the ForceUpdate has changed.
- /// </summary>
- protected virtual void OnForceUpdateChanged(Boolean forceupdate)
- {
- ForceUpdateChanged?.Invoke(this, forceupdate);
- RaisePropertyChanged(nameof(ForceUpdate));
- }
-
- /// <summary>
- /// Called when the Stable has changed.
- /// </summary>
- protected virtual void OnStableChanged(Boolean stable)
- {
- StableChanged?.Invoke(this, stable);
- RaisePropertyChanged(nameof(Stable));
- }
-
- /// <summary>
/// Called when the User has changed.
/// </summary>
protected virtual void OnUserChanged(User user)