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

Race to Linux - Race 2: Time Tracker Starter Kit

Rate me:
Please Sign up or sign in to vote.
4.25/5 (5 votes)
26 Sep 20051 min read 40.4K   274   16  
Time Tracker Starter Kit port to Linux using Mono and FireBird
using System;
using System.Collections;

namespace ASPNET.StarterKit.TimeTracker.BusinessLogicLayer
{
	//*********************************************************************
	//
	// ProjectsCollection Class
	//
	// ProjectsCollection class inherits from ArrayList.  It has its own implementation of Sort
	// base on the sortable Project fields
	//
	//*********************************************************************

	public class ProjectsCollection : ArrayList
	{
		public enum ProjectFields
		{
			InitValue,
			Name,
			ManagerUserName,
			CompletionDate,
			Duration
		}

		public void Sort(ProjectFields sortField, bool isAscending)
		{
			switch (sortField) 
			{
				case ProjectFields.Name:
					base.Sort(new NameComparer());
					break;
				case ProjectFields.ManagerUserName:
					base.Sort(new ManagerUserNameComparer());
					break;
				case ProjectFields.CompletionDate:
					base.Sort(new CompletionDateComparer());
					break;
				case ProjectFields.Duration:
					base.Sort(new DurationComparer());
					break;
			}

			if (!isAscending) base.Reverse();
		}

		private sealed class NameComparer : IComparer 
		{
			public int Compare(object x, object y)
			{
				Project first = (Project) x;
				Project second = (Project) y;
				return first.Name.CompareTo(second.Name);
			}
		}

		private sealed class ManagerUserNameComparer : IComparer 
		{
			public int Compare(object x, object y)
			{
				Project first = (Project) x;
				Project second = (Project) y;
				return first.ManagerUserName.CompareTo(second.ManagerUserName);
			}
		}

		private sealed class CompletionDateComparer : IComparer 
		{
			public int Compare(object x, object y)
			{
				Project first = (Project) x;
				Project second = (Project) y;
				return first.EstCompletionDate.CompareTo(second.EstCompletionDate);
			}
		}

		private sealed class DurationComparer : IComparer 
		{
			public int Compare(object x, object y)
			{
				Project first = (Project) x;
				Project second = (Project) y;
				return first.EstDuration.CompareTo(second.EstDuration);
			}
		}
	}
}

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
Web Developer
Uruguay Uruguay
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions