Comprehensive policy administration system (PAS) for .NET. Manage endorsements, renewals, cancellations, and reinstatements with full version history and document generation triggers.
$ dotnet add package PrimusSaaS.Insurance.PolicyPolicy Administration System (PAS) for .NET.
builder.Services.AddPrimusPolicyManager();
// Create Policy
var policy = await _policy.CreatePolicyAsync(new PolicyApplication
{
ProductCode = "HOME",
PrimaryInsured = new Insured { Name = "Jane Doe" }
});
// Endorse
await _policy.EndorsePolicyAsync(policy.PolicyNumber, new EndorsementRequest
{
Description = "Add Jewelry Rider"
});