/// <summary>
 /// Creates a SyncServer instance that the SyncManager can use to
 /// synchronize with this service.  This method is called during
 /// every synchronization process.  If the same SyncServer object
 /// is returned here, it should be reset as if it were new.
 /// </summary>
 public override SyncServer CreateSyncServer()
 {
     SyncServer server = new EvernoteSyncServer();
     return server;
 }
        /// <summary>
        /// Creates a SyncServer instance that the SyncManager can use to
        /// synchronize with this service.  This method is called during
        /// every synchronization process.  If the same SyncServer object
        /// is returned here, it should be reset as if it were new.
        /// </summary>
        public override SyncServer CreateSyncServer()
        {
            SyncServer server = new EvernoteSyncServer();

            return(server);
        }