Click here to Skip to main content
15,884,388 members
Articles / Database Development / SQL Server

GPS Tracer Extension: storing the path on SQL2005 via Web Services

Rate me:
Please Sign up or sign in to vote.
4.53/5 (9 votes)
7 Sep 20075 min read 33.6K   427   33  
This article extends Leonardo Salvatore's project "A GPS tracer application for Windows Mobile CE 5" using the Web Service Software Factory. It shows how to create a robust solution for storing the path on a DB server, using Web Services and SQL
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Text;
using Microsoft.Practices.EnterpriseLibrary.Data;
using GpsTracerServer.BusinessEntities;

namespace GpsTracerServer.DataAccess
{
    /// <summary>
    /// This class is specifies the selection criteria
    /// for a Factory
    /// </summary>
    internal class GetManyFromLocationEntryByDeviceIdByDateRangeIdentity
    {
        public GetManyFromLocationEntryByDeviceIdByDateRangeIdentity(System.DateTime dateFrom, System.DateTime dateTo, System.Guid iDDevice)
        {
            this.dateFromField = dateFrom;
            this.dateToField = dateTo;
            this.iDDeviceField = iDDevice;

        }

        private System.DateTime dateFromField;

        public System.DateTime DateFrom
        {
            get { return this.dateFromField; }
            set { this.dateFromField = value; }
        }

        private System.DateTime dateToField;

        public System.DateTime DateTo
        {
            get { return this.dateToField; }
            set { this.dateToField = value; }
        }

        private System.Guid iDDeviceField;

        public System.Guid IDDevice
        {
            get { return this.iDDeviceField; }
            set { this.iDDeviceField = value; }
        }

    }
}

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

Comments and Discussions