Acontplus.Core
1.0.7
See the version list below for details.
dotnet add package Acontplus.Core --version 1.0.7
NuGet\Install-Package Acontplus.Core -Version 1.0.7
<PackageReference Include="Acontplus.Core" Version="1.0.7" />
<PackageVersion Include="Acontplus.Core" Version="1.0.7" />
<PackageReference Include="Acontplus.Core" />
paket add Acontplus.Core --version 1.0.7
#r "nuget: Acontplus.Core, 1.0.7"
#addin nuget:?package=Acontplus.Core&version=1.0.7
#tool nuget:?package=Acontplus.Core&version=1.0.7
Acontplus.Core
A comprehensive .NET utility library providing foundational components and common functionality for enterprise applications.
Features
Core Components
- Base Entity System - Foundational entity structures with common properties
- Base DTO System - Base classes for data transfer objects
Utilities
- Enum Extensions - Helpful extension methods for working with enums
- Nullable Extensions - Extension methods for nullable types
Validation
- Data Validations - Common validation logic
- XML Validation - XML validation utilities
- Extreme Validations - Specialized validation scenarios
Logging
- Error Logging - Basic error logging infrastructure
Reporting
- Report Infrastructure - Base reporting components
Installation
dotnet add package Acontplus.Core
Usage Examples
Base Entity
public class Product : BaseEntity
{
public string Name { get; set; }
public decimal Price { get; set; }
}
Enum Extensions
public enum Status { Active, Inactive }
// Get display name or description
var displayName = Status.Active.GetDisplayName();
// Parse from string
var status = "Active".ToEnum<Status>();
Data Validation
var validator = new DataValidations();
if (!validator.IsValidEmail("test@example.com"))
{
// Handle invalid email
}
Documentation
Full API documentation is available at [https://github.com/Acontplus-S-A-S/acontplus-dotnet-libs/wiki]
Contributing
We welcome contributions! Please follow these steps:
- Fork the repository
- Create a feature branch
- Submit a pull request
See our [contribution guidelines]https://github.com/Acontplus-S-A-S/acontplus-dotnet-libs/blob/main/CONTRIBUTING.md) for more details.
Support
For issues or questions:
- Open an issue on [GitHub]https://github.com/Acontplus-S-A-S/acontplus-dotnet-libs/issues)
- Email support@acontplus.com
License
MIT License. See LICENSEhttps://github.com/Acontplus-S-A-S/acontplus-dotnet-libs/blob/main/LICENSE) for full details.
Author
Company
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. 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. |
-
net9.0
- No dependencies.
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Acontplus.Core:
Package | Downloads |
---|---|
Acontplus.Utilities
Cross-cutting utilities and general-purpose tools. |
|
Acontplus.Reports
Acontplus.Reports.Application is a .NET library designed to simplify the generation of RDLC (Report Definition Language Client-side) reports. It includes features for creating, exporting, and managing reports using RDLC in your .NET applications. |
|
Acontplus.Services
Lib to use common services config |
|
Acontplus.Notifications
Lib to send notifications |
|
Acontplus.FactElect
Lib to use facturación electronica SRI Ecuador |
GitHub repositories
This package is not used by any popular GitHub repositories.