Exemple #1
0
        public static Dictionary <string, int> GetPageCountByAgileLifeCycle()
        {
            LightSpeedRepository repository = new LightSpeedRepository(GetAppSettings());
            var dictionary = new Dictionary <string, int>();

            dictionary["Discover"]  = repository.PageCountByAgileLifeCyclePhase("Discover");
            dictionary["Prototype"] = repository.PageCountByAgileLifeCyclePhase("Prototype");
            dictionary["Build"]     = repository.PageCountByAgileLifeCyclePhase("Build");
            dictionary["Improve"]   = repository.PageCountByAgileLifeCyclePhase("Improve");
            return(dictionary);
        }