Click here to Skip to main content
15,885,546 members
Articles / Desktop Programming / WPF

GoalBook - A Hybrid Smart Client

Rate me:
Please Sign up or sign in to vote.
4.86/5 (24 votes)
25 Sep 2009CPOL10 min read 79K   834   69  
A WPF hybrid smart client that synchronises your goals with the Toodledo online To-do service.
//===============================================================================
// Goal Book.
// Copyright © 2009 Mark Brownsword. 
//===============================================================================

#region Using Statements
#endregion

namespace GoalBook.Synchronisation.ToodleDo
{
    internal abstract class Synchronisor<T>
    {
        #region Constants and Enums
                        
        //Misc constants
        protected const string NUMERIC_FALSE = "0";
        protected const string NUMERIC_TRUE = "1";        
        protected const string DASH = " - ";
        protected const string ADDED = "added";
        protected const string SUCCESS = "success";
        #endregion

        #region Inner Classes and Structures
        #endregion

        #region Delegates and Events
        #endregion

        #region Instance and Shared Fields
        #endregion

        #region Constructors

        /// <summary>
        /// Constructor.
        /// </summary>
        /// <param name="Connector">ToodledoConnector instance</param>
        internal Synchronisor(ToodledoConnector connector)
        {
            Connector = connector;
        }

        #endregion

        #region Properties

        /// <summary>
        /// Reference to Connector.
        /// </summary>
        protected ToodledoConnector Connector { get; private set; }                               
        #endregion

        #region Private and Protected Methods
                
        /// <summary>
        /// Declaration for Sync method. This method must be implemented by inheriting classes.
        /// </summary>
        internal abstract void Sync(T list);

        #endregion

        #region Public and internal Methods
        #endregion

        #region Event Handlers
        #endregion
    }
}

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
Software Developer (Senior)
Australia Australia
I've been working as a software developer since 2000 and hold a Bachelor of Business degree from The Open Polytechnic of New Zealand. Computers are for people and I aim to build applications for people that they would want to use.

Comments and Discussions