protected async Task UpdateStudent()
        {
            var response = await StudentiService.UpdateStudent(Id, Student);

            if (response != null)
            {
                NavigationManager.NavigateTo($"/students/{Id}/details");
            }
        }