示例#1
0
        public async Task <IActionResult> CpfCnpjExists(string cpfCnpj)
        {
            bool exists = await _supplierService.CpfCnpjExists(WebUtility.UrlDecode(cpfCnpj));

            return(Ok(exists));
        }