aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/PublishedProcedureProjectsVersionBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/PublishedProcedureProjectsVersionBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/Entities/PublishedProcedureProjectsVersionBase.cs220
1 files changed, 0 insertions, 220 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/PublishedProcedureProjectsVersionBase.cs b/Software/Visual_Studio/Tango.BL/Entities/PublishedProcedureProjectsVersionBase.cs
deleted file mode 100644
index 730ea9758..000000000
--- a/Software/Visual_Studio/Tango.BL/Entities/PublishedProcedureProjectsVersionBase.cs
+++ /dev/null
@@ -1,220 +0,0 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-// This code was generated by a tool.
-// Tango Observables Generator
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated. Do not modify!
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.ComponentModel.DataAnnotations;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.Xml.Serialization;
-using Newtonsoft.Json;
-using System.Linq;
-using Tango.DAL.Remote.DB;
-using Tango.Core;
-using System.ComponentModel;
-using Tango.Core.CustomAttributes;
-
-namespace Tango.BL.Entities
-{
- [Table("PUBLISHED_PROCEDURE_PROJECTS_VERSIONS")]
- public abstract class PublishedProcedureProjectsVersionBase : ObservableEntity<PublishedProcedureProjectsVersion>
- {
-
- public event EventHandler<Int32> VersionChanged;
-
- public event EventHandler<String> AuthorChanged;
-
- public event EventHandler<String> ProjectJsonStringChanged;
-
- public event EventHandler<PublishedProcedureProject> PublishedProcedureProjectChanged;
-
- protected String _publishedprocedureprojectguid;
-
- /// <summary>
- /// Gets or sets the publishedprocedureprojectsversionbase published procedure project guid.
- /// </summary>
-
- [Column("PUBLISHED_PROCEDURE_PROJECT_GUID")]
- [ForeignKey("PublishedProcedureProject")]
-
- public String PublishedProcedureProjectGuid
- {
- get
- {
- return _publishedprocedureprojectguid;
- }
-
- set
- {
- if (_publishedprocedureprojectguid != value)
- {
- _publishedprocedureprojectguid = value;
-
- }
- }
- }
-
- protected Int32 _version;
-
- /// <summary>
- /// Gets or sets the publishedprocedureprojectsversionbase version.
- /// </summary>
-
- [Column("VERSION")]
-
- public Int32 Version
- {
- get
- {
- return _version;
- }
-
- set
- {
- if (_version != value)
- {
- _version = value;
-
- OnVersionChanged(value);
-
- }
- }
- }
-
- protected String _author;
-
- /// <summary>
- /// Gets or sets the publishedprocedureprojectsversionbase author.
- /// </summary>
-
- [Column("AUTHOR")]
-
- public String Author
- {
- get
- {
- return _author;
- }
-
- set
- {
- if (_author != value)
- {
- _author = value;
-
- OnAuthorChanged(value);
-
- }
- }
- }
-
- protected String _projectjsonstring;
-
- /// <summary>
- /// Gets or sets the publishedprocedureprojectsversionbase project json string.
- /// </summary>
-
- [Column("PROJECT_JSON_STRING")]
-
- public String ProjectJsonString
- {
- get
- {
- return _projectjsonstring;
- }
-
- set
- {
- if (_projectjsonstring != value)
- {
- _projectjsonstring = value;
-
- OnProjectJsonStringChanged(value);
-
- }
- }
- }
-
- protected PublishedProcedureProject _publishedprocedureproject;
-
- /// <summary>
- /// Gets or sets the publishedprocedureprojectsversionbase published procedure projects.
- /// </summary>
-
- [XmlIgnore]
- [JsonIgnore]
- public virtual PublishedProcedureProject PublishedProcedureProject
- {
- get
- {
- return _publishedprocedureproject;
- }
-
- set
- {
- if (_publishedprocedureproject != value)
- {
- _publishedprocedureproject = value;
-
- if (PublishedProcedureProject != null)
- {
- PublishedProcedureProjectGuid = PublishedProcedureProject.Guid;
- }
-
- OnPublishedProcedureProjectChanged(value);
-
- }
- }
- }
-
- /// <summary>
- /// Called when the Version has changed.
- /// </summary>
- protected virtual void OnVersionChanged(Int32 version)
- {
- VersionChanged?.Invoke(this, version);
- RaisePropertyChanged(nameof(Version));
- }
-
- /// <summary>
- /// Called when the Author has changed.
- /// </summary>
- protected virtual void OnAuthorChanged(String author)
- {
- AuthorChanged?.Invoke(this, author);
- RaisePropertyChanged(nameof(Author));
- }
-
- /// <summary>
- /// Called when the ProjectJsonString has changed.
- /// </summary>
- protected virtual void OnProjectJsonStringChanged(String projectjsonstring)
- {
- ProjectJsonStringChanged?.Invoke(this, projectjsonstring);
- RaisePropertyChanged(nameof(ProjectJsonString));
- }
-
- /// <summary>
- /// Called when the PublishedProcedureProject has changed.
- /// </summary>
- protected virtual void OnPublishedProcedureProjectChanged(PublishedProcedureProject publishedprocedureproject)
- {
- PublishedProcedureProjectChanged?.Invoke(this, publishedprocedureproject);
- RaisePropertyChanged(nameof(PublishedProcedureProject));
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="PublishedProcedureProjectsVersionBase" /> class.
- /// </summary>
- public PublishedProcedureProjectsVersionBase() : base()
- {
- }
- }
-}