Exemplo n.º 1
0
 private void OnRowClick(TableRowClickEventArgs <SessionInfo> args)
 {
     NavigationManager.NavigateTo($"sessions/{args.Item.Id}");
 }
Exemplo n.º 2
0
 private void OpenCourse(TableRowClickEventArgs <CourseDto> e)
 {
     NavigationManager.NavigateTo($"/periods/subjects/courses/{e.Item.Id}");
 }
Exemplo n.º 3
0
 private void OpenSubject(TableRowClickEventArgs <SubjectDto> e)
 {
     NavigationManager.NavigateTo($"/periods/subjects/{e.Item.Id}");
 }