Example #1
0
        [HttpGet("byDateTeamLeader/{idTeam}/{date}")]//ROUTE
        public IActionResult GetByDateTeamLeader(int idTeam, DateTime date)
        {
            var timesheet = _timesheetService.GetTimesheetByDateTeamLeader(date, idTeam);

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

            return(Ok(timesheetDto));
        }