Example #1
0
        [HttpGet("byProjectDateTeamLeader/{IdProject}/{IdTeam}/{date}")]//ROUTE
        public IActionResult GetByUserDateTeamLeader(int IdProject, int IdTeam, DateTime date)
        {
            var timesheet = _timesheetService.GetTimesheetByProjectDateTeamLeader(IdProject, IdTeam, date);

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

            return(Ok(timesheetDto));
        }