private async Task LoadPhoto([NotNull] StudentEntity student)
        {
            var path = await _photoService.DownloadPhoto(StudentEntity.CardUidToId(student.CardUid));

            var image = _photoService.GetImage(path);

            RunInUiThread(() => this.StudentPhoto = image);
        }