Пример #1
0
        /// <summary>
        /// Synchronise the project with the connector given the project GUID
        /// </summary>
        /// <param name="projectId"></param>
        public static void SynchroniseProjectData(string projectId)
        {
            MessagingCenter.Send <Application, string>(Application.Current, "SyncMessage", "Synchronisiert ...");
            Project proj = Project.FetchProject(projectId);

            DataDAO.SynchroniseDataForProject(projectId);
        }