[PT-BR]Nova Ferramenta para buscas de CEPs e Endereços

joao2391

João Paulo de C. Lima

Posted on April 23, 2020

[PT-BR]Nova Ferramenta para buscas de CEPs e Endereços

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
Enter fullscreen mode Exit fullscreen mode

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;
Enter fullscreen mode Exit fullscreen mode

E utilize as seguintes funcionalidades:

CepSearch cep = new CepSearch();
string jsonResultAsync = await cep.GetAddressByCepAsync("numberOfCep");

string jsonResult = GetAddressByCep("numberOfCep");
Enter fullscreen mode Exit fullscreen mode

Get CEP by Address

CepSearch cep = new CepSearch();
string jsonResultAsync = await cep.GetCepByAddressAsync("address");

string jsonResult = cep.GetCepByAddress("address");
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
joao2391
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.

Related