コード例 #1
0
        public async Task <ActionResult> RegisterNewStudent(NewStudentInformationDto newStudentInformationDto)
        {
            var registrationResult = await _studentRegistrationService.AddNewStudent(newStudentInformationDto);

            return(View(registrationResult.GetUserSafeResult <bool, StudentInformationDto>()));
        }