Пример #1
0
        public PandaDoc.Models.GetDocuments.GetDocumentsResponse Documents()
        {
            var pandaDocHelper = new PandaDocHelper();
            var response       = pandaDocHelper.GetAllDocuments().Result;

            return(response);
        }
Пример #2
0
        public async Task <ViewResult> List()
        {
            var docs = await pandaDoc.GetAllDocuments();

            return(View(docs.Value.Results));
        }
Пример #3
0
        public async Task <Models.GetDocuments.GetDocumentsResponse> Documents()
        {
            var response = await pandaDocHelper.GetAllDocuments();

            return(response.Value);
        }