Template
chore: deploy initial code base
This commit is contained in:
+124
@@ -0,0 +1,124 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
||||
{
|
||||
public partial class JazzEntityFrameworkFactory
|
||||
{
|
||||
#region Opportunities
|
||||
|
||||
public List<Biz.UtilizationVariation.Opportunities.UVOpportunity> UVOpportunities =
|
||||
new List<Biz.UtilizationVariation.Opportunities.UVOpportunity>
|
||||
{
|
||||
new Biz.UtilizationVariation.Opportunities.UVOpportunity
|
||||
{
|
||||
OpportunityGuid = OpportunityGuids.First(),
|
||||
OpportunityKey = "UV - 123",
|
||||
IdentifiedSavings = 1000d,
|
||||
Cases = 99,
|
||||
CaseTypeGuid = CaseTypeGuid,
|
||||
CaseTypeName = "Case Type Name",
|
||||
CostDriver = "Cost Driver",
|
||||
EntityId = "1",
|
||||
EntityName = "Entity Name",
|
||||
ServiceLineName = "Service Line",
|
||||
ServiceLineId = 1,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new Biz.UtilizationVariation.Opportunities.UVOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "UV - 122",
|
||||
IdentifiedSavings = 2000d,
|
||||
Cases = 199,
|
||||
CaseTypeGuid = CaseTypeGuid,
|
||||
CaseTypeName = "Case Type Name",
|
||||
CostDriver = "Cost Driver",
|
||||
EntityId = "1,2",
|
||||
EntityName = "Entity Name",
|
||||
ServiceLineName = "Service Line",
|
||||
ServiceLineId = 2,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new Biz.UtilizationVariation.Opportunities.UVOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "UV - 125",
|
||||
IdentifiedSavings = 1000d,
|
||||
Cases = 99,
|
||||
CaseTypeGuid = CaseTypeGuid,
|
||||
CaseTypeName = "Case Type Name",
|
||||
CostDriver = "Cost Driver",
|
||||
EntityId = "1",
|
||||
EntityName = "Entity Name",
|
||||
ServiceLineName = "Service Line",
|
||||
ServiceLineId = 2,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = true,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new Biz.UtilizationVariation.Opportunities.UVOpportunity
|
||||
{
|
||||
OpportunityGuid = OpportunityGuids.Last(),
|
||||
OpportunityKey = "UV - 124",
|
||||
IdentifiedSavings = 2000d,
|
||||
Cases = 199,
|
||||
CaseTypeGuid = CaseTypeGuid,
|
||||
CaseTypeName = "Case Type Name",
|
||||
CostDriver = "Cost Driver",
|
||||
EntityId = "1",
|
||||
EntityName = "Entity Name",
|
||||
ServiceLineName = "Service Line",
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = true,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new Biz.UtilizationVariation.Opportunities.UVOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "UV - 126",
|
||||
IdentifiedSavings = 2000d,
|
||||
Cases = 199,
|
||||
CaseTypeGuid = Guid.NewGuid(),
|
||||
CaseTypeName = "Case Type Name",
|
||||
CostDriver = "Cost Driver 2",
|
||||
EntityId = "1",
|
||||
EntityName = "Entity Name",
|
||||
ServiceLineName = "Service Line",
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = true,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new Biz.UtilizationVariation.Opportunities.UVOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.Parse("ecc29e51-e92b-467a-bae4-7f69e36af069"),
|
||||
OpportunityKey = "FE - 100",
|
||||
IdentifiedSavings = 2000d,
|
||||
Cases = 199,
|
||||
CaseTypeGuid = Guid.NewGuid(),
|
||||
CaseTypeName = "Case Type Name",
|
||||
CostDriver = "Cost Driver",
|
||||
EntityId = "1,3",
|
||||
EntityName = "Entity Name",
|
||||
ServiceLineName = "Service Line",
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
}
|
||||
};
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user