private async Task <List <Attachment> > GetAttachments(Document doc) { using (var progress = DialogHelper.ShowProgress(AppResources.LOADING_DOCUMENT_INFO)) { var autores = await HttpRequest.GetJson <List <Attachment> >(EndPointHelper.GetDocumentAttachments(doc.Id)); return(autores); } }