chore: deploy initial code base

This commit is contained in:
Thom Lamb
2026-05-12 10:34:30 -05:00
parent cce2961782
commit a81300a571
1829 changed files with 248331 additions and 1 deletions
@@ -0,0 +1,42 @@
using Strata.ContinuousImprovement.Biz.QualityVariation.Events;
using System.Collections.Generic;
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
{
public partial class JazzEntityFrameworkFactory
{
public List<QVIEvent> QVIEvents =
new List<QVIEvent>
{
new QVIEvent
{
QualityVariationEventId = 1,
QualityVariationEventName = "Event 1 - Everything is 1 in this event.",
IdentifiedSavingsTotal = 1,
CasesTotal = 1,
QVICasesTotal = 1,
QVIPatientDaysTotal = 1,
QVICostToal = 1,
QVINetRevenueTotal = 1,
Opportunities = 1,
ConfigurationGuid = CurrentConfigurationGuid,
QVIRate = 1
},
new QVIEvent
{
QualityVariationEventId = 2,
QualityVariationEventName = "Event 2",
IdentifiedSavingsTotal = 2,
CasesTotal = 2,
QVICasesTotal = 2,
QVIPatientDaysTotal = 2,
QVICostToal = 2,
QVINetRevenueTotal = 2,
Opportunities = 2,
ConfigurationGuid = CurrentConfigurationGuid,
QVIRate = 0.02m
}
};
}
}