aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
diff options
context:
space:
mode:
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)