Beispiel #1
0
        public async Task <ActionResult <IEnumerable <TimeSlot> > > Get()
        {
            var result = await _timeSlotService.GetAllAsDTOAsync();

            return(Ok(result));
        }