public ActionResult GetReport(int?year, int?userId)
        {
            var jsonResult = Json(_vm.GetReport(year, userId));

            return(GetAuthenticatedJson(jsonResult, _vm.Role.IsExecutive));
        }