Beispiel #1
0
        public async Task <IHttpActionResult> GetAttendanceByYearly(int clientId, int employeeId, int year)
        {
            var userId = GetUserId();
            var attendanceByYearData = await _reportsManager.GetAttendanceByYearlyAsync(clientId, userId, employeeId, year);

            return(Ok(attendanceByYearData));
        }