This repository was archived by the owner on Mar 3, 2024. It is now read-only.
Releases: TechNobre/PowerUtils.Validations.Primitives
Releases · TechNobre/PowerUtils.Validations.Primitives
v2.0.0
v1.2.2
1.2.1
1.2.0
[1.2.0] - 2022-03-30
New Features
- Added new constants
MIN_LATITUDE,MAX_LATITUDE,MIN_LONGITUDEandMAX_LONGITUDE;
1.1.0
1.0.0
[1.0.0] - 2022-03-15
- Kickoff;
- Moved the attributes from PowerUtils.Validations project to this one so it can be used individually;
New Features
- Added new constants
DUPLICATEDandEXPIRED; - Added helper
ErrorCodes.GetMinFormatted(int min);; - Added helper
ErrorCodes.GetMaxFormatted(int max);; - Added helper
ErrorCodes.GetMinFormatted(uint min);; - Added helper
ErrorCodes.GetMaxFormatted(uint max);; - Added helper
ErrorCodes.GetMinFormatted(ulong min);; - Added helper
ErrorCodes.GetMaxFormatted(ulong max);; - Added helper
ErrorCodes.GetMinFormatted(float min);; - Added helper
ErrorCodes.GetMaxFormatted(float max);; - Added helper
ErrorCodes.GetMinFormatted(decimal min);; - Added helper
ErrorCodes.GetMaxFormatted(decimal max);; - Added helper
ErrorCodes.GetMinFormatted(DateTime min);; - Added helper
ErrorCodes.GetMaxFormatted(DateTime max);; - Added helper
ErrorCodes.GetMinFormatted<TValue>(TValue min);; - Added helper
ErrorCodes.GetMaxFormatted<TValue>(TValue max);;
Breaking Changes
- Discontinued the constant
ALREADY_EXISTS. New constantDUPLICATED;