Posted 11 February 2019, 6:54 pm EST
I have data structure like below:
public string DepartmentName { get; set; }
public string EmployeeId { get; set; }
public string EmployeeName { get; set; }
public List Punches { get; set; }
public string TotalHours { get; set; }
public string TotalOverTimeHours { get; set; }
I would like to design a report group by department and then employee Name. The detail section should display data from List.
Can you help?
Thanks,
Danny