/HPCERP.Model/Address_Type.cs

# · C# · 299 lines · 266 code · 25 blank · 8 comment · 57 complexity · d3955f1a4908509346aff92c8088c4f1 MD5 · raw file

  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Collections.ObjectModel;
  12. using System.Collections.Specialized;
  13. using System.ComponentModel;
  14. using System.Globalization;
  15. using System.Runtime.Serialization;
  16. namespace HPCERP.Model
  17. {
  18. [DataContract(IsReference = true)]
  19. [KnownType(typeof(ClientAddress))]
  20. [KnownType(typeof(SupplierAddress))]
  21. public partial class Address_Type: IObjectWithChangeTracker, INotifyPropertyChanged
  22. {
  23. #region Primitive Properties
  24. [DataMember]
  25. public int Id_Address_Type
  26. {
  27. get { return _id_Address_Type; }
  28. set
  29. {
  30. if (_id_Address_Type != value)
  31. {
  32. if (ChangeTracker.ChangeTrackingEnabled && ChangeTracker.State != ObjectState.Added)
  33. {
  34. throw new InvalidOperationException("The property 'Id_Address_Type' is part of the object's key and cannot be changed. Changes to key properties can only be made when the object is not being tracked or is in the Added state.");
  35. }
  36. _id_Address_Type = value;
  37. OnPropertyChanged("Id_Address_Type");
  38. }
  39. }
  40. }
  41. private int _id_Address_Type;
  42. [DataMember]
  43. public string Name
  44. {
  45. get { return _name; }
  46. set
  47. {
  48. if (_name != value)
  49. {
  50. _name = value;
  51. OnPropertyChanged("Name");
  52. }
  53. }
  54. }
  55. private string _name;
  56. #endregion
  57. #region Navigation Properties
  58. [DataMember]
  59. public TrackableCollection<ClientAddress> ClientAddress
  60. {
  61. get
  62. {
  63. if (_clientAddress == null)
  64. {
  65. _clientAddress = new TrackableCollection<ClientAddress>();
  66. _clientAddress.CollectionChanged += FixupClientAddress;
  67. }
  68. return _clientAddress;
  69. }
  70. set
  71. {
  72. if (!ReferenceEquals(_clientAddress, value))
  73. {
  74. if (ChangeTracker.ChangeTrackingEnabled)
  75. {
  76. throw new InvalidOperationException("Cannot set the FixupChangeTrackingCollection when ChangeTracking is enabled");
  77. }
  78. if (_clientAddress != null)
  79. {
  80. _clientAddress.CollectionChanged -= FixupClientAddress;
  81. }
  82. _clientAddress = value;
  83. if (_clientAddress != null)
  84. {
  85. _clientAddress.CollectionChanged += FixupClientAddress;
  86. }
  87. OnNavigationPropertyChanged("ClientAddress");
  88. }
  89. }
  90. }
  91. private TrackableCollection<ClientAddress> _clientAddress;
  92. [DataMember]
  93. public TrackableCollection<SupplierAddress> SupplierAddress
  94. {
  95. get
  96. {
  97. if (_supplierAddress == null)
  98. {
  99. _supplierAddress = new TrackableCollection<SupplierAddress>();
  100. _supplierAddress.CollectionChanged += FixupSupplierAddress;
  101. }
  102. return _supplierAddress;
  103. }
  104. set
  105. {
  106. if (!ReferenceEquals(_supplierAddress, value))
  107. {
  108. if (ChangeTracker.ChangeTrackingEnabled)
  109. {
  110. throw new InvalidOperationException("Cannot set the FixupChangeTrackingCollection when ChangeTracking is enabled");
  111. }
  112. if (_supplierAddress != null)
  113. {
  114. _supplierAddress.CollectionChanged -= FixupSupplierAddress;
  115. }
  116. _supplierAddress = value;
  117. if (_supplierAddress != null)
  118. {
  119. _supplierAddress.CollectionChanged += FixupSupplierAddress;
  120. }
  121. OnNavigationPropertyChanged("SupplierAddress");
  122. }
  123. }
  124. }
  125. private TrackableCollection<SupplierAddress> _supplierAddress;
  126. #endregion
  127. #region ChangeTracking
  128. protected virtual void OnPropertyChanged(String propertyName)
  129. {
  130. if (ChangeTracker.State != ObjectState.Added && ChangeTracker.State != ObjectState.Deleted)
  131. {
  132. ChangeTracker.State = ObjectState.Modified;
  133. }
  134. if (_propertyChanged != null)
  135. {
  136. _propertyChanged(this, new PropertyChangedEventArgs(propertyName));
  137. }
  138. }
  139. protected virtual void OnNavigationPropertyChanged(String propertyName)
  140. {
  141. if (_propertyChanged != null)
  142. {
  143. _propertyChanged(this, new PropertyChangedEventArgs(propertyName));
  144. }
  145. }
  146. event PropertyChangedEventHandler INotifyPropertyChanged.PropertyChanged{ add { _propertyChanged += value; } remove { _propertyChanged -= value; } }
  147. private event PropertyChangedEventHandler _propertyChanged;
  148. private ObjectChangeTracker _changeTracker;
  149. [DataMember]
  150. public ObjectChangeTracker ChangeTracker
  151. {
  152. get
  153. {
  154. if (_changeTracker == null)
  155. {
  156. _changeTracker = new ObjectChangeTracker();
  157. _changeTracker.ObjectStateChanging += HandleObjectStateChanging;
  158. }
  159. return _changeTracker;
  160. }
  161. set
  162. {
  163. if(_changeTracker != null)
  164. {
  165. _changeTracker.ObjectStateChanging -= HandleObjectStateChanging;
  166. }
  167. _changeTracker = value;
  168. if(_changeTracker != null)
  169. {
  170. _changeTracker.ObjectStateChanging += HandleObjectStateChanging;
  171. }
  172. }
  173. }
  174. private void HandleObjectStateChanging(object sender, ObjectStateChangingEventArgs e)
  175. {
  176. if (e.NewState == ObjectState.Deleted)
  177. {
  178. ClearNavigationProperties();
  179. }
  180. }
  181. protected bool IsDeserializing { get; private set; }
  182. [OnDeserializing]
  183. public void OnDeserializingMethod(StreamingContext context)
  184. {
  185. IsDeserializing = true;
  186. }
  187. [OnDeserialized]
  188. public void OnDeserializedMethod(StreamingContext context)
  189. {
  190. IsDeserializing = false;
  191. ChangeTracker.ChangeTrackingEnabled = true;
  192. }
  193. protected virtual void ClearNavigationProperties()
  194. {
  195. ClientAddress.Clear();
  196. SupplierAddress.Clear();
  197. }
  198. #endregion
  199. #region Association Fixup
  200. private void FixupClientAddress(object sender, NotifyCollectionChangedEventArgs e)
  201. {
  202. if (IsDeserializing)
  203. {
  204. return;
  205. }
  206. if (e.NewItems != null)
  207. {
  208. foreach (ClientAddress item in e.NewItems)
  209. {
  210. item.Address_Type = this;
  211. if (ChangeTracker.ChangeTrackingEnabled)
  212. {
  213. if (!item.ChangeTracker.ChangeTrackingEnabled)
  214. {
  215. item.StartTracking();
  216. }
  217. ChangeTracker.RecordAdditionToCollectionProperties("ClientAddress", item);
  218. }
  219. }
  220. }
  221. if (e.OldItems != null)
  222. {
  223. foreach (ClientAddress item in e.OldItems)
  224. {
  225. if (ReferenceEquals(item.Address_Type, this))
  226. {
  227. item.Address_Type = null;
  228. }
  229. if (ChangeTracker.ChangeTrackingEnabled)
  230. {
  231. ChangeTracker.RecordRemovalFromCollectionProperties("ClientAddress", item);
  232. }
  233. }
  234. }
  235. }
  236. private void FixupSupplierAddress(object sender, NotifyCollectionChangedEventArgs e)
  237. {
  238. if (IsDeserializing)
  239. {
  240. return;
  241. }
  242. if (e.NewItems != null)
  243. {
  244. foreach (SupplierAddress item in e.NewItems)
  245. {
  246. item.Address_Type = this;
  247. if (ChangeTracker.ChangeTrackingEnabled)
  248. {
  249. if (!item.ChangeTracker.ChangeTrackingEnabled)
  250. {
  251. item.StartTracking();
  252. }
  253. ChangeTracker.RecordAdditionToCollectionProperties("SupplierAddress", item);
  254. }
  255. }
  256. }
  257. if (e.OldItems != null)
  258. {
  259. foreach (SupplierAddress item in e.OldItems)
  260. {
  261. if (ReferenceEquals(item.Address_Type, this))
  262. {
  263. item.Address_Type = null;
  264. }
  265. if (ChangeTracker.ChangeTrackingEnabled)
  266. {
  267. ChangeTracker.RecordRemovalFromCollectionProperties("SupplierAddress", item);
  268. }
  269. }
  270. }
  271. }
  272. #endregion
  273. }
  274. }