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