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

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