예제 #1
0
        public async Task <List <PrintTemplate> > GetAllPrintTemplates(int accountId)
        {
            var connString = await GetAccountConnectionString(accountId);

            var response = await _infowebAXClientReference.GetAllPrintTemplates(connString);

            return(GetDeserializedResponse <PrintTemplate>(response.GetAllPrintTemplatesResult.Nodes));
        }