public static int ReportedProjectsCount(this PerformanceMeasure performanceMeasure, FirmaSession currentFirmaSession)
 {
     return(performanceMeasure.GetAssociatedProjectsWithReportedValues(currentFirmaSession).Count);
 }
        public static List <PerformanceMeasureReportedValue> GetReportedPerformanceMeasureValues(this PerformanceMeasure performanceMeasure, FirmaSession currentFirmaSession)
        {
            var projects = performanceMeasure.GetAssociatedProjectsWithReportedValues(currentFirmaSession);

            return(performanceMeasure.GetReportedPerformanceMeasureValues(projects));
        }