aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-02-10 13:32:03 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-02-10 13:32:03 +0200
commite245356c722792f8c23aa483cb323f4c47b54fb6 (patch)
treeb6861fa22f2b5a476aa486ab7056297ff5621302 /Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
parent85be4860a445cd2cb5dcc01a582fbea5fe21c200 (diff)
downloadTango-e245356c722792f8c23aa483cb323f4c47b54fb6.tar.gz
Tango-e245356c722792f8c23aa483cb323f4c47b54fb6.zip
Added new event types.
Remove IsStable and AcceptBetaRelease from machine studio.
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)