Template
chore: deploy initial code base
This commit is contained in:
@@ -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
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user