/DMS/Implementacion/PaucarpataSolution/PPR.Data/provincias.cs

http://ppp-eym.googlecode.com/ · C# · 347 lines · 300 code · 29 blank · 18 comment · 66 complexity · 45b8524c7413205e37c0b2c39081a2ec 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 PPR.Data
  17. {
  18. [DataContract(IsReference = true)]
  19. [KnownType(typeof(departamentos))]
  20. [KnownType(typeof(distritos))]
  21. public partial class provincias: IObjectWithChangeTracker, INotifyPropertyChanged
  22. {
  23. #region Primitive Properties
  24. [DataMember]
  25. public int id_prov
  26. {
  27. get { return _id_prov; }
  28. set
  29. {
  30. if (_id_prov != value)
  31. {
  32. if (ChangeTracker.ChangeTrackingEnabled && ChangeTracker.State != ObjectState.Added)
  33. {
  34. throw new InvalidOperationException("The property 'id_prov' 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_prov = value;
  37. OnPropertyChanged("id_prov");
  38. }
  39. }
  40. }
  41. private int _id_prov;
  42. [DataMember]
  43. public int cod_dep
  44. {
  45. get { return _cod_dep; }
  46. set
  47. {
  48. if (_cod_dep != value)
  49. {
  50. ChangeTracker.RecordOriginalValue("cod_dep", _cod_dep);
  51. if (!IsDeserializing)
  52. {
  53. if (departamentos != null && departamentos.cod_dep != value)
  54. {
  55. departamentos = null;
  56. }
  57. }
  58. _cod_dep = value;
  59. OnPropertyChanged("cod_dep");
  60. }
  61. }
  62. }
  63. private int _cod_dep;
  64. [DataMember]
  65. public int cod_prv
  66. {
  67. get { return _cod_prv; }
  68. set
  69. {
  70. if (_cod_prv != value)
  71. {
  72. _cod_prv = value;
  73. OnPropertyChanged("cod_prv");
  74. }
  75. }
  76. }
  77. private int _cod_prv;
  78. [DataMember]
  79. public string nom_prv
  80. {
  81. get { return _nom_prv; }
  82. set
  83. {
  84. if (_nom_prv != value)
  85. {
  86. _nom_prv = value;
  87. OnPropertyChanged("nom_prv");
  88. }
  89. }
  90. }
  91. private string _nom_prv;
  92. #endregion
  93. #region Navigation Properties
  94. [DataMember]
  95. public departamentos departamentos
  96. {
  97. get { return _departamentos; }
  98. set
  99. {
  100. if (!ReferenceEquals(_departamentos, value))
  101. {
  102. var previousValue = _departamentos;
  103. _departamentos = value;
  104. Fixupdepartamentos(previousValue);
  105. OnNavigationPropertyChanged("departamentos");
  106. }
  107. }
  108. }
  109. private departamentos _departamentos;
  110. [DataMember]
  111. public TrackableCollection<distritos> distritos
  112. {
  113. get
  114. {
  115. if (_distritos == null)
  116. {
  117. _distritos = new TrackableCollection<distritos>();
  118. _distritos.CollectionChanged += Fixupdistritos;
  119. }
  120. return _distritos;
  121. }
  122. set
  123. {
  124. if (!ReferenceEquals(_distritos, value))
  125. {
  126. if (ChangeTracker.ChangeTrackingEnabled)
  127. {
  128. throw new InvalidOperationException("Cannot set the FixupChangeTrackingCollection when ChangeTracking is enabled");
  129. }
  130. if (_distritos != null)
  131. {
  132. _distritos.CollectionChanged -= Fixupdistritos;
  133. // This is the principal end in an association that performs cascade deletes.
  134. // Remove the cascade delete event handler for any entities in the current collection.
  135. foreach (distritos item in _distritos)
  136. {
  137. ChangeTracker.ObjectStateChanging -= item.HandleCascadeDelete;
  138. }
  139. }
  140. _distritos = value;
  141. if (_distritos != null)
  142. {
  143. _distritos.CollectionChanged += Fixupdistritos;
  144. // This is the principal end in an association that performs cascade deletes.
  145. // Add the cascade delete event handler for any entities that are already in the new collection.
  146. foreach (distritos item in _distritos)
  147. {
  148. ChangeTracker.ObjectStateChanging += item.HandleCascadeDelete;
  149. }
  150. }
  151. OnNavigationPropertyChanged("distritos");
  152. }
  153. }
  154. }
  155. private TrackableCollection<distritos> _distritos;
  156. #endregion
  157. #region ChangeTracking
  158. protected virtual void OnPropertyChanged(String propertyName)
  159. {
  160. if (ChangeTracker.State != ObjectState.Added && ChangeTracker.State != ObjectState.Deleted)
  161. {
  162. ChangeTracker.State = ObjectState.Modified;
  163. }
  164. if (_propertyChanged != null)
  165. {
  166. _propertyChanged(this, new PropertyChangedEventArgs(propertyName));
  167. }
  168. }
  169. protected virtual void OnNavigationPropertyChanged(String propertyName)
  170. {
  171. if (_propertyChanged != null)
  172. {
  173. _propertyChanged(this, new PropertyChangedEventArgs(propertyName));
  174. }
  175. }
  176. event PropertyChangedEventHandler INotifyPropertyChanged.PropertyChanged{ add { _propertyChanged += value; } remove { _propertyChanged -= value; } }
  177. private event PropertyChangedEventHandler _propertyChanged;
  178. private ObjectChangeTracker _changeTracker;
  179. [DataMember]
  180. public ObjectChangeTracker ChangeTracker
  181. {
  182. get
  183. {
  184. if (_changeTracker == null)
  185. {
  186. _changeTracker = new ObjectChangeTracker();
  187. _changeTracker.ObjectStateChanging += HandleObjectStateChanging;
  188. }
  189. return _changeTracker;
  190. }
  191. set
  192. {
  193. if(_changeTracker != null)
  194. {
  195. _changeTracker.ObjectStateChanging -= HandleObjectStateChanging;
  196. }
  197. _changeTracker = value;
  198. if(_changeTracker != null)
  199. {
  200. _changeTracker.ObjectStateChanging += HandleObjectStateChanging;
  201. }
  202. }
  203. }
  204. private void HandleObjectStateChanging(object sender, ObjectStateChangingEventArgs e)
  205. {
  206. if (e.NewState == ObjectState.Deleted)
  207. {
  208. ClearNavigationProperties();
  209. }
  210. }
  211. // This entity type is the dependent end in at least one association that performs cascade deletes.
  212. // This event handler will process notifications that occur when the principal end is deleted.
  213. internal void HandleCascadeDelete(object sender, ObjectStateChangingEventArgs e)
  214. {
  215. if (e.NewState == ObjectState.Deleted)
  216. {
  217. this.MarkAsDeleted();
  218. }
  219. }
  220. protected bool IsDeserializing { get; private set; }
  221. [OnDeserializing]
  222. public void OnDeserializingMethod(StreamingContext context)
  223. {
  224. IsDeserializing = true;
  225. }
  226. [OnDeserialized]
  227. public void OnDeserializedMethod(StreamingContext context)
  228. {
  229. IsDeserializing = false;
  230. ChangeTracker.ChangeTrackingEnabled = true;
  231. }
  232. protected virtual void ClearNavigationProperties()
  233. {
  234. departamentos = null;
  235. distritos.Clear();
  236. }
  237. #endregion
  238. #region Association Fixup
  239. private void Fixupdepartamentos(departamentos previousValue)
  240. {
  241. if (IsDeserializing)
  242. {
  243. return;
  244. }
  245. if (previousValue != null && previousValue.provincias.Contains(this))
  246. {
  247. previousValue.provincias.Remove(this);
  248. }
  249. if (departamentos != null)
  250. {
  251. if (!departamentos.provincias.Contains(this))
  252. {
  253. departamentos.provincias.Add(this);
  254. }
  255. cod_dep = departamentos.cod_dep;
  256. }
  257. if (ChangeTracker.ChangeTrackingEnabled)
  258. {
  259. if (ChangeTracker.OriginalValues.ContainsKey("departamentos")
  260. && (ChangeTracker.OriginalValues["departamentos"] == departamentos))
  261. {
  262. ChangeTracker.OriginalValues.Remove("departamentos");
  263. }
  264. else
  265. {
  266. ChangeTracker.RecordOriginalValue("departamentos", previousValue);
  267. }
  268. if (departamentos != null && !departamentos.ChangeTracker.ChangeTrackingEnabled)
  269. {
  270. departamentos.StartTracking();
  271. }
  272. }
  273. }
  274. private void Fixupdistritos(object sender, NotifyCollectionChangedEventArgs e)
  275. {
  276. if (IsDeserializing)
  277. {
  278. return;
  279. }
  280. if (e.NewItems != null)
  281. {
  282. foreach (distritos item in e.NewItems)
  283. {
  284. item.provincias = this;
  285. if (ChangeTracker.ChangeTrackingEnabled)
  286. {
  287. if (!item.ChangeTracker.ChangeTrackingEnabled)
  288. {
  289. item.StartTracking();
  290. }
  291. ChangeTracker.RecordAdditionToCollectionProperties("distritos", item);
  292. }
  293. // This is the principal end in an association that performs cascade deletes.
  294. // Update the event listener to refer to the new dependent.
  295. ChangeTracker.ObjectStateChanging += item.HandleCascadeDelete;
  296. }
  297. }
  298. if (e.OldItems != null)
  299. {
  300. foreach (distritos item in e.OldItems)
  301. {
  302. if (ReferenceEquals(item.provincias, this))
  303. {
  304. item.provincias = null;
  305. }
  306. if (ChangeTracker.ChangeTrackingEnabled)
  307. {
  308. ChangeTracker.RecordRemovalFromCollectionProperties("distritos", item);
  309. }
  310. // This is the principal end in an association that performs cascade deletes.
  311. // Remove the previous dependent from the event listener.
  312. ChangeTracker.ObjectStateChanging -= item.HandleCascadeDelete;
  313. }
  314. }
  315. }
  316. #endregion
  317. }
  318. }