Beispiel #1
0
        public JsonResult GetApprovedTimetables()
        {
            IReadOnlyCollection <ApprovedTimetableDto> timetables = _timetableService.GetApprovedTimetables().ToList();
            var timetablesKeys = _mapper.Map <IReadOnlyCollection <ApprovedTimetableKey> >(timetables);

            return(Json(timetablesKeys));
        }