Example #1
0
        [HttpGet("byUserDateTeamLeader/{IdUser}/{date}")]//ROUTE
        public IActionResult GetByUserDateTeamLeader(int IdUser, DateTime date)
        {
            var timesheet = _timesheetService.GetTimesheetByUserDateTeamLeader(IdUser, date);

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

            return(Ok(timesheetDto));
        }