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");
Top comments (0)