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)); }