Exemple #1
0
        public async Task <IActionResult> GetAllScheduleResponsesByShift(string shiftId)
        {
            var response = await _shiftService.GetAllScheduleResponsesByShift(shiftId);

            return(Ok(new ApiOkResponse(response)));
        }