示例#1
0
        /// <summary>
        /// Gets the number of organisations signed up to Pipeline
        /// </summary>
        public static Dictionary <string, int> GetPageCountByAgilePhase()
        {
            LightSpeedRepository repository = new LightSpeedRepository(GetAppSettings());
            var dictionary = new Dictionary <string, int>();

            dictionary["Discovery"] = repository.PageCountByStatus("Discovery");
            dictionary["Alpha"]     = repository.PageCountByStatus("Alpha");
            dictionary["Beta"]      = repository.PageCountByStatus("Beta");
            dictionary["Live"]      = repository.PageCountByStatus("Live");
            return(dictionary);
        }