private void UpdateStudent()
        {
            _studentService.AddOrUpdate(StudentData);
            var vm = new NotifyShowViewModel()
            {
                Caption = "Sửa thành công!",
                Content = $"Đã sửa phẩn tử ID: {StudentData.Id} trong danh sách."
            };

            INotification notification = _CustomtNotificationService.CreateCustomNotification(vm);

            notification.ShowAsync();
        }