public OverallPerformanceController([NotNull] IOverallPerformanceChartService chartService)
        {
            if (chartService == null)
            {
                throw new ArgumentNullException(nameof(chartService));
            }

            this.chartService = chartService;
            this.doNotUseExpenseFilter = true;
        }
Exemplo n.º 2
0
        public OverallPerformanceController([NotNull] IOverallPerformanceChartService chartService)
        {
            if (chartService == null)
            {
                throw new ArgumentNullException(nameof(chartService));
            }

            this.chartService          = chartService;
            this.doNotUseExpenseFilter = true;
        }