Exemplo n.º 1
0
        public async Task <bool> DeletePrintTemplate(int accountId, int templateId)
        {
            var connString = await GetAccountConnectionString(accountId);

            var response = await _infowebAXClientReference.DeletePrintTemplate(connString, templateId);

            return(await Task.FromResult(response.DeletePrintTemplateResult));
        }