1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace GDNXFD.Data
- {
- [Table("LEVELTYPETESTINGPOINT")]
- public class LevelTypeTestingPoint : TestingPointBase, INotifyPropertyChanged
- {
- [Column("CODE")]
- public string Id { get; set; }
- [Column("LEVELTYPE")]
- public string LevelType { get; set; }
- [Column("UNIFORMCODE")]
- public override string UniformCode { get; set; }
- [Column("NAME")]
- public override string Name { get; set; }
- /// <summary>
- /// Property changed event
- /// </summary>
- public event PropertyChangedEventHandler PropertyChanged;
- private void RaisePropertyChanged([CallerMemberName] string caller = "")
- {
- if (PropertyChanged != null)
- {
- PropertyChanged(this, new PropertyChangedEventArgs(caller));
- }
- }
- }
- }
|