MedPulse.SharedKernel 0.2.0

dotnet add package MedPulse.SharedKernel --version 0.2.0
                    
NuGet\Install-Package MedPulse.SharedKernel -Version 0.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MedPulse.SharedKernel" Version="0.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MedPulse.SharedKernel" Version="0.2.0" />
                    
Directory.Packages.props
<PackageReference Include="MedPulse.SharedKernel" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MedPulse.SharedKernel --version 0.2.0
                    
#r "nuget: MedPulse.SharedKernel, 0.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MedPulse.SharedKernel@0.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MedPulse.SharedKernel&version=0.2.0
                    
Install as a Cake Addin
#tool nuget:?package=MedPulse.SharedKernel&version=0.2.0
                    
Install as a Cake Tool

MedPulse Library

MedPulse is a .NET 8 library designed to support healthcare-related processes. Developed under the Vulcanobyte umbrella, this library is released as a non-profit, open-source project to facilitate the implementation of medical solutions.

Current Version

Version: 0.1.0
License: MIT

Key Features

  • Entity Management: Incorporates base entities like BaseEntity with common properties such as:

    • Id
    • CreatedAt
    • UpdatedAt
    • IsDeleted
    • DeletedAt
    • DeletedBy
    • CreatedBy
    • UpdatedBy

    These properties follow standard patterns for managing entity lifecycles in database operations.

  • Pagination: Includes a configurable Pagination class that uses PaginationSettings for managing paginated data. This allows easy integration of pagination logic across multiple services, with options to inject default pagination settings via the IOptions pattern.

  • MassTransit Integration: Seamless integration with MassTransit to handle message-based communication through Azure Service Bus, including custom consumers like InsuredMessagesConsumer and ExclusionMessagesConsumer.

  • Email Strategies: Implements an efficient system for sending emails via SendGrid, based on different application states, such as Approved, Pending, or Declined.

  • Mocking Support: Uses the Bogus library for creating test data, ensuring developers can easily mock objects and services during unit testing.

  • API Client Support: Provides services to interact with APIs, such as PolicyService, which fetches policy information using IHttpClientFactory. The library supports both System.Text.Json and Newtonsoft.Json for serialization needs.

Installation

To install MedPulse, add the following NuGet package to your .NET project:

dotnet add package MedPulse --version 0.1.0
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.0 177 9/19/2024
0.1.0 124 9/19/2024

Initial release of MedPulse's healthcare support module.