aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/TangoUpdateBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/TangoUpdateBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/Entities/TangoUpdateBase.cs366
1 files changed, 0 insertions, 366 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/TangoUpdateBase.cs b/Software/Visual_Studio/Tango.BL/Entities/TangoUpdateBase.cs
deleted file mode 100644
index 677886b47..000000000
--- a/Software/Visual_Studio/Tango.BL/Entities/TangoUpdateBase.cs
+++ /dev/null
@@ -1,366 +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("TANGO_UPDATES")]
- public abstract class TangoUpdateBase : ObservableEntity<TangoUpdate>
- {
-
- public event EventHandler<String> ApplicationVersionChanged;
-
- public event EventHandler<String> FirmwareVersionChanged;
-
- public event EventHandler<Int32> StatusChanged;
-
- public event EventHandler<String> FailedReasonChanged;
-
- public event EventHandler<String> FailedLogChanged;
-
- public event EventHandler<DateTime> StartDateChanged;
-
- public event EventHandler<Nullable<DateTime>> EndDateChanged;
-
- public event EventHandler<Boolean> IsSynchronizedChanged;
-
- protected String _applicationversion;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase application version.
- /// </summary>
-
- [Column("APPLICATION_VERSION")]
-
- public String ApplicationVersion
- {
- get
- {
- return _applicationversion;
- }
-
- set
- {
- if (_applicationversion != value)
- {
- _applicationversion = value;
-
- OnApplicationVersionChanged(value);
-
- }
- }
- }
-
- protected String _firmwareversion;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase firmware version.
- /// </summary>
-
- [Column("FIRMWARE_VERSION")]
-
- public String FirmwareVersion
- {
- get
- {
- return _firmwareversion;
- }
-
- set
- {
- if (_firmwareversion != value)
- {
- _firmwareversion = value;
-
- OnFirmwareVersionChanged(value);
-
- }
- }
- }
-
- protected String _machineguid;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase machine guid.
- /// </summary>
-
- [Column("MACHINE_GUID")]
-
- public String MachineGuid
- {
- get
- {
- return _machineguid;
- }
-
- set
- {
- if (_machineguid != value)
- {
- _machineguid = value;
-
- }
- }
- }
-
- protected Int32 _status;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase status.
- /// </summary>
-
- [Column("STATUS")]
-
- public Int32 Status
- {
- get
- {
- return _status;
- }
-
- set
- {
- if (_status != value)
- {
- _status = value;
-
- OnStatusChanged(value);
-
- }
- }
- }
-
- protected String _failedreason;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase failed reason.
- /// </summary>
-
- [Column("FAILED_REASON")]
-
- public String FailedReason
- {
- get
- {
- return _failedreason;
- }
-
- set
- {
- if (_failedreason != value)
- {
- _failedreason = value;
-
- OnFailedReasonChanged(value);
-
- }
- }
- }
-
- protected String _failedlog;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase failed log.
- /// </summary>
-
- [Column("FAILED_LOG")]
-
- public String FailedLog
- {
- get
- {
- return _failedlog;
- }
-
- set
- {
- if (_failedlog != value)
- {
- _failedlog = value;
-
- OnFailedLogChanged(value);
-
- }
- }
- }
-
- protected DateTime _startdate;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase start date.
- /// </summary>
-
- [Column("START_DATE")]
-
- public DateTime StartDate
- {
- get
- {
- return _startdate;
- }
-
- set
- {
- if (_startdate != value)
- {
- _startdate = value;
-
- OnStartDateChanged(value);
-
- }
- }
- }
-
- protected Nullable<DateTime> _enddate;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase end date.
- /// </summary>
-
- [Column("END_DATE")]
-
- public Nullable<DateTime> EndDate
- {
- get
- {
- return _enddate;
- }
-
- set
- {
- if (_enddate != value)
- {
- _enddate = value;
-
- OnEndDateChanged(value);
-
- }
- }
- }
-
- protected Boolean _issynchronized;
-
- /// <summary>
- /// Gets or sets the tangoupdatebase is synchronized.
- /// </summary>
-
- [Column("IS_SYNCHRONIZED")]
-
- public Boolean IsSynchronized
- {
- get
- {
- return _issynchronized;
- }
-
- set
- {
- if (_issynchronized != value)
- {
- _issynchronized = value;
-
- OnIsSynchronizedChanged(value);
-
- }
- }
- }
-
- /// <summary>
- /// Called when the ApplicationVersion has changed.
- /// </summary>
- protected virtual void OnApplicationVersionChanged(String applicationversion)
- {
- ApplicationVersionChanged?.Invoke(this, applicationversion);
- RaisePropertyChanged(nameof(ApplicationVersion));
- }
-
- /// <summary>
- /// Called when the FirmwareVersion has changed.
- /// </summary>
- protected virtual void OnFirmwareVersionChanged(String firmwareversion)
- {
- FirmwareVersionChanged?.Invoke(this, firmwareversion);
- RaisePropertyChanged(nameof(FirmwareVersion));
- }
-
- /// <summary>
- /// Called when the Status has changed.
- /// </summary>
- protected virtual void OnStatusChanged(Int32 status)
- {
- StatusChanged?.Invoke(this, status);
- RaisePropertyChanged(nameof(Status));
- }
-
- /// <summary>
- /// Called when the FailedReason has changed.
- /// </summary>
- protected virtual void OnFailedReasonChanged(String failedreason)
- {
- FailedReasonChanged?.Invoke(this, failedreason);
- RaisePropertyChanged(nameof(FailedReason));
- }
-
- /// <summary>
- /// Called when the FailedLog has changed.
- /// </summary>
- protected virtual void OnFailedLogChanged(String failedlog)
- {
- FailedLogChanged?.Invoke(this, failedlog);
- RaisePropertyChanged(nameof(FailedLog));
- }
-
- /// <summary>
- /// Called when the StartDate has changed.
- /// </summary>
- protected virtual void OnStartDateChanged(DateTime startdate)
- {
- StartDateChanged?.Invoke(this, startdate);
- RaisePropertyChanged(nameof(StartDate));
- }
-
- /// <summary>
- /// Called when the EndDate has changed.
- /// </summary>
- protected virtual void OnEndDateChanged(Nullable<DateTime> enddate)
- {
- EndDateChanged?.Invoke(this, enddate);
- RaisePropertyChanged(nameof(EndDate));
- }
-
- /// <summary>
- /// Called when the IsSynchronized has changed.
- /// </summary>
- protected virtual void OnIsSynchronizedChanged(Boolean issynchronized)
- {
- IsSynchronizedChanged?.Invoke(this, issynchronized);
- RaisePropertyChanged(nameof(IsSynchronized));
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="TangoUpdateBase" /> class.
- /// </summary>
- public TangoUpdateBase() : base()
- {
- }
- }
-}