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

Developing Next Generation Smart Clients using .NET 2.0 working with Existing .NET 1.1 SOA-based XML Web Services

Rate me:
Please Sign up or sign in to vote.
4.96/5 (134 votes)
16 Aug 200540 min read 1.2M   3.9K   462  
Comprehensive guide to development of .NET 2.0 Smart Clients working with existing Service Oriented Architecture based XML web services, fully utilizing the Enterprise Library
using System;
using System.Xml.Serialization;

namespace SmartInstitute
{
	///<summary>
	/// An object representation of the 'CourseTakenByStudent' table. [No description for this table in the database]	
	/// It decorates the actual CourseTakenByStudent object with further properties for easy access to 
	/// referenced objects
	///</summary>
	/// <remarks>
	/// Inherits from the <see cref="CourseTakenByStudentBase"/> class.
	/// Sorting and interfaces implementations are part of the <see cref="CourseTakenByStudentBase"/> class.
	/// Only custom implementations are done in this class.
	/// </remarks>
	[Serializable]
	public class CourseTakenByStudent2 : CourseTakenByStudent
	{
		private enum CourseStatusBit
		{
			ValidInvalidBitMask = 1,
			DropBitMask = 2,
			UnofficialWithdrawBitMask = 4,
			RetakeBitMask = 8
		}

		public Course Course;
		public CourseSection Section;
		public Student Student;

		public CourseTakenByStudent2() {}
		public CourseTakenByStudent2(CourseTakenByStudent courseTaken)
		{
			base._ChangeStamp = courseTaken.ChangeStamp;
			base._CourseID = courseTaken.CourseID;
			base._ID = courseTaken.ID;
			base._NonCredit = courseTaken.NonCredit;
			base.SectionID = courseTaken.SectionID;
			base.Status = courseTaken.Status;
			base.StudentID = courseTaken.StudentID;
			base.AcceptChanges();
		}
		[XmlIgnore]
		public bool UnofficialWithdraw
		{
			get
			{
				return (Status & (int)CourseStatusBit.UnofficialWithdrawBitMask) > 0;
			}
			set
			{
				if( value )
					Status |= (int)CourseStatusBit.UnofficialWithdrawBitMask;
				else
					Status = Status & (~(int)CourseStatusBit.UnofficialWithdrawBitMask);
			}
		}

		[XmlIgnore]
		public bool Dropped
		{
			get
			{
				return (Status & ((int)CourseStatusBit.DropBitMask)) > 0;
			}
			set
			{
				if( value )
					Status |= (int)CourseStatusBit.DropBitMask;
				else
					Status = Status & (~(int)CourseStatusBit.DropBitMask);									
			}
		}

		[XmlIgnore]
		public bool Retake
		{
			get
			{
				return (Status & ((int)CourseStatusBit.RetakeBitMask)) > 0;
			}
			set
			{
				if( value )
					Status |= (int)CourseStatusBit.RetakeBitMask;
				else
					Status = Status & (~(int)CourseStatusBit.RetakeBitMask);									
			}
		}

		[XmlIgnore]
		public bool Valid
		{
			get
			{
				return (Status & (int)CourseStatusBit.ValidInvalidBitMask) > 0;			
			}
			set
			{
				if( value )
					Status |= (int)CourseStatusBit.ValidInvalidBitMask;
				else
					Status = Status & (~(int)CourseStatusBit.ValidInvalidBitMask);				
			}
		}

	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions