NBrzId.Validator
1.0.2
dotnet add package NBrzId.Validator --version 1.0.2
NuGet\Install-Package NBrzId.Validator -Version 1.0.2
<PackageReference Include="NBrzId.Validator" Version="1.0.2" />
<PackageVersion Include="NBrzId.Validator" Version="1.0.2" />
<PackageReference Include="NBrzId.Validator" />
paket add NBrzId.Validator --version 1.0.2
#r "nuget: NBrzId.Validator, 1.0.2"
#:package NBrzId.Validator@1.0.2
#addin nuget:?package=NBrzId.Validator&version=1.0.2
#tool nuget:?package=NBrzId.Validator&version=1.0.2
Brazilian Identifiers Validator Library
This library provides validation methods for Brazilian identifiers in .NET applications.
Table of Contents
Overview
This library provides a set of tools and interfaces for validating Brazilian identifiers. The main components are:
IBrzIdentifierValidator<T>: Defines the contract for validators of Brazilian identifiers. Implementations of this interface are expected to apply validation logic tailored to types that implement theNBrzId.Common.IBrzIdentifierinterface.IBrzValidator: This interface provides methods that simplify the validation of identifiers without requiring direct instantiation of specific validator classes. It includes specialized methods for common identifier types.BrzValidations: This static helper class provides direct validation methods for common identifier types, making it convenient to validate these identifiers without requiring dependency injection or service configuration.
Getting Started
Installation
To include this library in your .NET project, add it as a dependency via NuGet:
dotnet add package NBrzId.Validator --version 1.0.2
Usage
The simplest way to validate Brazilian identifier is through the BrzValidations static class:
Console.WriteLine("Enter a Brazilian identifier: ");
var identifierValue = Console.ReadKey();
var isValidCnpj = BrzValidations.CheckCnpj(identifierValue);
var isValidCpf = BrzValidations.CheckCpf(identifierValue, removeFormatters: false, pad: true);
Console.WriteLine($"Valid CNPJ? {isValidCnpj}");
Console.WriteLine($"Valid CPF? {isValidCpf}");
You can also leverage the validators with dependency injection. For this, add a reference to the package NBrzId.Validator.DependencyInjection.
//Dependency injection setup
private static void ConfigureServices(IServiceCollection serviceDescriptors)
{
//Registers pre-built identifier types and their validators
serviceDescriptors.UseBrzValidators();
}
//Actual injection and usage of the CPF validator
[ApiController]
[Route("api/{controller}")]
public class MyApiController : ControllerBase
{
private readonly IBrzIdentifierValidator<Cpf> _cpfValidator;
public MyApiController(IBrzIdentifierValidator<Cpf> cpfValidator)
{
_cpfValidator = cpfValidator;
}
[HttpPut("{id}")]
public IActionResult UpdateCustomer(int id, [FromBody] Customer updatedCustomer)
{
// Applied validation here!
if (_cpfValidator.ApplyValidation(updatedCustomer.Cpf, removeFormatters: false, pad: true))
{
return BadRequest("Invalid CPF was provided");
}
//[...]
return Ok("Updated");
}
}
//Injection and usage of IBrzValidator, which contains operation to validate multiple identifier types
public sealed class MyService
{
private readonly IBrzValidator _validator;
public MyService(IBrzIdentifierValidator<Cpf> validator)
{
_validator = validator;
}
public void CheckUserType(User user)
{
var userDocument = user.DocumentNumber;
if (_validator.ValidateCnpj(userDocument))
{
user.Type = "Company";
}
else if (_validator.ValidateCpf(userDocument))
{
user.Type = "Individual";
}
else
{
user.Type = "Unknown";
}
}
}
Compatibility
This library targets .NET Standard 2.0, ensuring compatibility with .NET Core, .NET 5/6/7/8, and .NET Framework 4.6.1+.
Roadmap
This library is in active development. Planned features for future releases include additional Brazilian identifiers validations as needed
Contributing
Contributions are welcome! Please open an issue to report bugs or discuss improvements.
License
This project is licensed under the MIT License. See the LICENSE.md file for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- NBrzId.Common (>= 1.0.0 && < 2.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NBrzId.Validator:
| Package | Downloads |
|---|---|
|
NBrzId.Validator.DependencyInjection
Contains dependency injection configuration methods for types defined in the package NBrzId.Validator |
GitHub repositories
This package is not used by any popular GitHub repositories.