Click here to Skip to main content
15,883,883 members
Articles / Mobile Apps / Windows Mobile

Resort Companion

Rate me:
Please Sign up or sign in to vote.
3.95/5 (20 votes)
2 Jun 2004CPOL7 min read 55.1K   178   18  
Presenting the Resort Companion, a data-navigation application for vacation resorts
// Resort Companion Mobile Edition
// Copyright (c) 2004 Wolf Logan

using System;
using System.Windows.Forms;
using System.Drawing;
using org.CircleCross.ResortCompanion.Data;

// TODO: add controls to allow specific querying of service records

namespace org.CircleCross.ResortCompanion.Mobile {
	/// <summary>
	/// the search form for service records
	/// </summary>
	public class ServiceFinder: FindView {

		public ServiceFinder(): base() {
		}
	
		public override Type TargetType {
			get {
				return typeof(ServicePlaceRecord);
			}
		}
	
		public override string TargetLabel {
			get {
				return "Services";
			}
		}

	}
}

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

Comments and Discussions