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-25 18:18:35 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-02-25 18:18:35 +0200
commite112866a2cf44ddeb5b40e8ffc84614ecfe6abdf (patch)
tree48614b95fe9e3d549a465a7b381f432c21a0fef8 /Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
parent08d9858ecd0d4adb0c9c6076d7d2b1216e8f64c3 (diff)
downloadTango-e112866a2cf44ddeb5b40e8ffc84614ecfe6abdf.tar.gz
Tango-e112866a2cf44ddeb5b40e8ffc84614ecfe6abdf.zip
Implemented auto installer release for machine studio and PPC.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs b/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
index 93c0f2518..edbddb240 100644
--- a/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
+++ b/Software/Visual_Studio/Tango.BL/Entities/MachineStudioVersionBase.cs
@@ -29,6 +29,8 @@ namespace Tango.BL.Entities
public event EventHandler<String> BlobNameChanged;
+ public event EventHandler<String> InstallerBlobNameChanged;
+
public event EventHandler<String> CommentsChanged;
public event EventHandler<User> UserChanged;
@@ -87,6 +89,33 @@ namespace Tango.BL.Entities
}
}
+ protected String _installerblobname;
+
+ /// <summary>
+ /// Gets or sets the machinestudioversionbase installer blob name.
+ /// </summary>
+
+ [Column("INSTALLER_BLOB_NAME")]
+
+ public String InstallerBlobName
+ {
+ get
+ {
+ return _installerblobname;
+ }
+
+ set
+ {
+ if (_installerblobname != value)
+ {
+ _installerblobname = value;
+
+ OnInstallerBlobNameChanged(value);
+
+ }
+ }
+ }
+
protected String _comments;
/// <summary>
@@ -185,6 +214,15 @@ namespace Tango.BL.Entities
}
/// <summary>
+ /// Called when the InstallerBlobName has changed.
+ /// </summary>
+ protected virtual void OnInstallerBlobNameChanged(String installerblobname)
+ {
+ InstallerBlobNameChanged?.Invoke(this, installerblobname);
+ RaisePropertyChanged(nameof(InstallerBlobName));
+ }
+
+ /// <summary>
/// Called when the Comments has changed.
/// </summary>
protected virtual void OnCommentsChanged(String comments)