Example #1
0
        //------------------------------------------------------------------------------------
        /// <summary>
        /// Begins the process of loading the current's team's planner schedule from the
        /// repository.
        /// </summary>
        //------------------------------------------------------------------------------------
        public void InitializeRepository(bool shouldClearProductGroup)
        {
            ExperienceItem.InitializeFilters();
            BacklogItem.InitializeFilters();

            if (shouldClearProductGroup)
            {
                BeginProductGroupQuery(null);
            }
            else
            {
                BeginOpenProductGroup();
            }
        }