示例#1
0
        public async Task <IActionResult> GetStudentApplication(long appId)
        {
            var userId = Request.GetUserId();
            var studentApplicationDTO = await _applicationsService.GetApplicationForStudentAsync(userId, appId)
                                        .ConfigureAwait(false);

            return(Ok(studentApplicationDTO));
        }