예제 #1
0
        public IActionResult Index(bool isPrev, bool isNext, int prevWeek)
        {
            var start = new ExceptionChartStart(_chartService, _week, _logEntryRepository, prevWeek, isPrev, isNext);

            start.Run();
            Doughnut();
            return(View(start));
        }
예제 #2
0
        public IActionResult Index()
        {
            var start = new ExceptionChartStart(_chartService, _week, _logEntryRepository, 0, false, false);

            start.Run();

            Doughnut();

            return(View(start));
        }