Exemple #1
0
        public async Task <IHttpActionResult> GetEmployeeAttendanceReports(int clientId, int month, int year, int employeeId)
        {
            var userId = GetUserId();
            var attendanceByEmployee = await _reportsManager.GetAttendanceByEmployeeAsync(employeeId, month, year, clientId, userId);

            return(Ok(attendanceByEmployee));
        }