Click here to Skip to main content
15,891,777 members
Articles / Mobile Apps / Windows Phone 7

RegiRide, a complete Windows Phone application

Rate me:
Please Sign up or sign in to vote.
4.99/5 (51 votes)
24 Jun 2012CPOL17 min read 114.1K   2.5K   123  
A complete WP7 application with SQL compact database, LINQ to SQL, MVVM Light and Dropbox integration
namespace RegiRide.DesignTime
{
    using System;
    using System.Collections.Generic;
    using System.Windows;

    using RegiRide.Model;
    using RegiRide.Repository;

    public class DesignRideRepository : IRideRepository
    {
        public List<Ride> GetAll()
        {
            var rideList = new List<Ride>();
            
            var startDateTime = new DateTime(2011, 1, 1);
            var endDatetime = new DateTime(2011, 6, 1);

            for (DateTime dateTimeCounter = startDateTime; dateTimeCounter < endDatetime; dateTimeCounter = dateTimeCounter.AddDays(0.5))
            {
                var ride = new Ride();
                ride.Id = Guid.NewGuid();
                ride.RideType = (int)RideType.Business;
                ride.Date = dateTimeCounter;
                ride.Remark = "Remark " + dateTimeCounter.Ticks;
                ride.StartMilage = 12001;
                ride.EndMilage = 12082;
                rideList.Add(ride);
            }

            return rideList;
        }

        public Ride GetPreviousState(Ride model)
        {
            return model;
        }

        public void Save(Ride ride)
        {
        }

        public Ride CreateNewRide()
        {
            return new Ride();
        }

        public void Delete(Ride model)
        {
        }

        public bool IsAddressUsed(Address model)
        {
            return false;
        }

        public void DeleteAll()
        {
            
        }

        public Ride GetRide(Guid addressId)
        {
            try
            {
                var ride = new Ride();
                ride.Id = Guid.NewGuid();
                ride.RideType = (int)RideType.Business;
                ride.Date = DateTime.Now;
                ride.Remark = "Remark 001";
                ride.StartMilage = 12001;
                ride.EndMilage = 12082;
                //ride.StartAddress = new DesignAddressRepository().GetAddress(Guid.NewGuid());
                //ride.EndAddress = new DesignAddressRepository().GetAddress(Guid.NewGuid());
                return ride;
            }
            catch (Exception error)
            {
                MessageBox.Show(error.Message);
                return null;
            }
        }
    }
}

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
Architect http://www.simpletechture.nl
Netherlands Netherlands
Patrick Kalkman is a senior Software Architect with more than 20 years professional development experience. He works for SimpleTechture where he helps teams develop state of the art web applications.

Patrick enjoys writing his blog. It discusses agile software development. Patrick can be reached at patrick@simpletechture.nl.

Published Windows 8 apps:


Published Windows Phone apps:


Awards:

Best Mobile article of March 2012
Best Mobile article of June 2012

Comments and Discussions