示例#1
0
        protected override async Task OnInitializedAsync()
        {
            Id      = Id ?? "1";
            Student = await StudentService.GetStudent(int.Parse(Id));

            Enrollments = (await EnrollmentService.GetEnrollmentBySID(int.Parse(Id))).ToList();
            //Student = (await StudentService.GetStudent(int.Parse(Id))).ToList();
        }