João Paulo de C. Lima
Posted on April 23, 2020
DotNet CEP Search
Está disponível no Github e no Nuget
DotNetCEPSearch é uma biblioteca, desenvolvida em .NET Standard 2.0, que auxilia na busca por CEP e Endereços no Brasil.
Como instalar?
Basta digitar o comando abaixo no seu Package Manager Console ou procurar via Nuget dentro do Visual Studio.
Install-Package DotNetCEPSearch -Version 1.0.0
Como utilizar?
Após a instalação ser concluída, adicione o código abaixo no topo da sua classe:
using DotNet.CEP.Search.App;
E utilize as seguintes funcionalidades:
CepSearch cep = new CepSearch();
string jsonResultAsync = await cep.GetAddressByCepAsync("numberOfCep");
string jsonResult = GetAddressByCep("numberOfCep");
Get CEP by Address
CepSearch cep = new CepSearch();
string jsonResultAsync = await cep.GetCepByAddressAsync("address");
string jsonResult = cep.GetCepByAddress("address");
💖 💪 🙅 🚩
João Paulo de C. Lima
Posted on April 23, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.