Beispiel #1
0
        public async Task <IActionResult> DeleteStudentFromGroup(Guid groupId, Guid studentId)
        {
            if (await _educationService.DeleteStudentFromGroup(groupId, studentId))
            {
                return(NoContent());
            }

            return(NotFound());
        }