Exemplo n.º 1
0
        public ActionResult GetFolders()
        {
            var userId = Guid.Parse(User.Identity.GetUserId());

            var employeeChart = _chartEmployeeService.ShowEmployeeCharts(userId);

            return(PartialView("_Folders", employeeChart));
        }
Exemplo n.º 2
0
        public ActionResult EmployeeChartDropDown()
        {
            var model = _chartEmployeeService.ShowEmployeeCharts(Guid.Parse(User.Identity.GetUserId()));

            return(PartialView(model));
        }