Example #1
0
        [HttpGet("byUserTeamLeader/{IdUser}")]//ROUTE
        public IActionResult GetByUserTeamLeader(int IdUser)
        {
            var timesheet = _timesheetService.GetTimesheetByUserTeamLeader(IdUser);

            var timesheetDto = _mapper.Map <IList <TimesheetViewDto> >(timesheet);

            return(Ok(timesheetDto));
        }