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; namespace Tango.BL.Entities { [Table("TECH_CONTROLLERS")] public partial class TechController : ObservableEntity { protected Int32 _code; /// /// Gets or sets the techcontroller code. /// [Column("CODE")] public Int32 Code { get { return _code; } set { _code = value; RaisePropertyChanged(nameof(Code)); } } protected String _name; /// /// Gets or sets the techcontroller name. /// [Column("NAME")] public String Name { get { return _name; } set { _name = value; RaisePropertyChanged(nameof(Name)); } } protected String _description; /// /// Gets or sets the techcontroller description. /// [Column("DESCRIPTION")] public String Description { get { return _description; } set { _description = value; RaisePropertyChanged(nameof(Description)); } } protected Double _min; /// /// Gets or sets the techcontroller min. /// [Column("MIN")] public Double Min { get { return _min; } set { _min = value; RaisePropertyChanged(nameof(Min)); } } protected Double _max; /// /// Gets or sets the techcontroller max. /// [Column("MAX")] public Double Max { get { return _max; } set { _max = value; RaisePropertyChanged(nameof(Max)); } } protected String _units; /// /// Gets or sets the techcontroller units. /// [Column("UNITS")] public String Units { get { return _units; } set { _units = value; RaisePropertyChanged(nameof(Units)); } } /// /// Initializes a new instance of the class. /// public TechController() : base() { } } }