Click here to Skip to main content
15,883,814 members
Articles / Web Development / ASP.NET

Observer Pattern in .NET

Rate me:
Please Sign up or sign in to vote.
4.39/5 (25 votes)
9 Mar 2004CPOL4 min read 139.3K   1.6K   65  
A mechanism for drastically reducing coupling between interacting classes
using System;

namespace ObserverPattern
{
	/// <summary>
	/// Summary description for Library.
	/// </summary>
	public class NationalTravels
	{

		public void UpdateBangaloreAirlinesRout(object Traveller)
		{
			if( Traveller is BangaloreAirlines)
			{
				AddRoutforBangaloreAirlines((BangaloreAirlines)Traveller);

			}

		}

		private void AddRoutforBangaloreAirlines(BangaloreAirlines traveller)
		{
			//Code for adding the new rout to NationalTravel's Travel database.
			Console.WriteLine("new rout No. " +  traveller.TravelRout  + " Added Sucessfully to National Travel's Database");
		}
		
	}
}

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
Web Developer
United States United States
Sunil Kumar Works for Wipro Technologies, one of the leading software services company in the world. He is a Microsoft Certified Solution Developer(MCSD) in .NET

Comments and Discussions