Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / WPF

Introduction to Model Driven Development with Sculpture – Part 1

Rate me:
Please Sign up or sign in to vote.
5.00/5 (23 votes)
3 Sep 2008CPOL15 min read 113.5K   759   124  
This article introduces how to create and manage .NET enterprise applications using your favorite technology (Data Access Application Block, LINQ, NHibernate, ASMX, and WCF) with the Model Driven Development approach by Sculpture.
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by Sculpture Code Generation Engine.
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
//     Generated On : 28/08/2008 06:20:13 م
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.ComponentModel;

namespace Service
{
	
	/// <summary>
	/// Data Contract Base Class
	/// </summary>
	public abstract class DataContractBase : INotifyPropertyChanging, INotifyPropertyChanged
	{

		#region Protected Variables
		
		protected static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
		protected object _tag;
		protected bool _suspendDataContractEvents;
		
		#endregion
		
		#region Public Properties
		
		public bool SuspendDataContractEvents
		{	
			get { return _suspendDataContractEvents; }
			set { _suspendDataContractEvents = value; }
		}
		
		public object Tag
		{
			get { return this._tag; }
			set { this._tag = value; }
		}
		
		#endregion
		
		#region INotifyPropertyChanging Members
		
		public event PropertyChangingEventHandler PropertyChanging;

		protected virtual void SendPropertyChanging()
		{
			if (this.PropertyChanging != null  && _suspendDataContractEvents == false)
			{
				this.PropertyChanging(this, emptyChangingEventArgs);
			}
		}

		#endregion
		
		#region INotifyPropertyChanged Members
		
		public event PropertyChangedEventHandler PropertyChanged;
		
		protected virtual void SendPropertyChanged(String propertyName)
		{
			if (this.PropertyChanged != null && _suspendDataContractEvents == false)
			{
				this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
			}
		}
		
		#endregion
		
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer www.Dawliasoft.com
Egypt Egypt
Program Manager in Sculpture project, Interesting in .NET Model driven development.

Comments and Discussions