Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
using Strata.ContinuousImprovement.Biz.Encounter.Opportunities;
|
||||
using Strata.ContinuousImprovement.Biz.Shared;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
||||
{
|
||||
public partial class JazzEntityFrameworkFactory
|
||||
{
|
||||
#region Opportunities
|
||||
|
||||
public List<ENOpportunity> ENOpportunities =
|
||||
new List<ENOpportunity>
|
||||
{
|
||||
new ENOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "EN - 101",
|
||||
Name = "Encounter Name 1",
|
||||
IdentifiedSavings = 1000d,
|
||||
Cases = 99,
|
||||
EncounterGroup = EncounterGroup.CaseType,
|
||||
EncounterGroupValue = "Case Type",
|
||||
OpportunityLevel = "Organization",
|
||||
IsSeasonal = true,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new ENOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "EN - 102",
|
||||
Name = "Encounter Name 2",
|
||||
IdentifiedSavings = 2000d,
|
||||
Cases = 199,
|
||||
EncounterGroup = EncounterGroup.CaseType,
|
||||
EncounterGroupValue = "Case Type",
|
||||
OpportunityLevel = "Entity",
|
||||
IsSeasonal = false,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new ENOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "EN - 103",
|
||||
Name = "Encounter Name 3",
|
||||
IdentifiedSavings = 1000d,
|
||||
Cases = 99,
|
||||
EncounterGroup = EncounterGroup.PatientPopulation,
|
||||
EncounterGroupValue = "Patient Population",
|
||||
OpportunityLevel = "Specialty",
|
||||
IsSeasonal = true,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new ENOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "EN - 104",
|
||||
Name = "Encounter Name 4",
|
||||
IdentifiedSavings = 2000d,
|
||||
Cases = 299,
|
||||
EncounterGroup = EncounterGroup.PatientPopulation,
|
||||
EncounterGroupValue = "Patient Population",
|
||||
OpportunityLevel = "Service Line",
|
||||
IsSeasonal = false,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new ENOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "EN - 105",
|
||||
Name = "Encounter Name 5",
|
||||
IdentifiedSavings = 3000d,
|
||||
Cases = 399,
|
||||
EncounterGroup = EncounterGroup.CaseType,
|
||||
EncounterGroupValue = "Case Type",
|
||||
OpportunityLevel = "Provider",
|
||||
IsSeasonal = true,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
};
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user