Exemplo n.º 1
0
        // Get attendee hours in Excel
        public ActionResult WorkshopHoursExcel(int id = 0)
        {
            if (id == 0)
            {
                return(null);
            }

            return(File(_excelService.AttendeeWorkshopHours(id), MimeTypes.Excel,
                        "AttendeeHours.xlsx"));
        }