示例#1
0
        [HttpGet("byDate_ProjectManager/{date}/{IdManager}")]//ROUTE
        public IActionResult GetByDate_Manager(DateTime date, int IdManager)
        {
            var timesheet = _timesheetService.GetTimesheetByDate_Manager(date, IdManager);

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

            return(Ok(timesheetDto));
        }