Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
using Strata.ContinuousImprovement.Biz.FreeForm.Opportunities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
||||
{
|
||||
public partial class JazzEntityFrameworkFactory
|
||||
{
|
||||
#region Opportunities
|
||||
|
||||
public List<FFOpportunity> FFOpportunities =
|
||||
new List<FFOpportunity>
|
||||
{
|
||||
new FFOpportunity
|
||||
{
|
||||
OpportunityGuid = OpportunityGuids.First(),
|
||||
OpportunityKey = "FF - 123",
|
||||
IdentifiedSavings = 1000d,
|
||||
ImprovementType = FinancialImprovementType.Revenue,
|
||||
MetricTypeValue = "Financial per Unit",
|
||||
MetricType = MetricType.FinancialPerUnit,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new FFOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "FF - 122",
|
||||
IdentifiedSavings = 2000d,
|
||||
ImprovementType = FinancialImprovementType.Cost,
|
||||
MetricTypeValue = "Financial",
|
||||
MetricType = MetricType.Financial,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new FFOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "FF - 125",
|
||||
IdentifiedSavings = 1000d,
|
||||
ImprovementType = FinancialImprovementType.Cost,
|
||||
MetricTypeValue = "Operational",
|
||||
MetricType = MetricType.Operational,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = true,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new FFOpportunity
|
||||
{
|
||||
OpportunityGuid = OpportunityGuids.Last(),
|
||||
OpportunityKey = "FF - 124",
|
||||
IdentifiedSavings = 2000d,
|
||||
ImprovementType = FinancialImprovementType.Cost,
|
||||
MetricTypeValue = "Financial",
|
||||
MetricType = MetricType.Financial,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = true,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new FFOpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "FF - 126",
|
||||
IdentifiedSavings = 2000d,
|
||||
ImprovementType = FinancialImprovementType.Revenue,
|
||||
MetricTypeValue = "Financial per Unit",
|
||||
MetricType = MetricType.FinancialPerUnit,
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = true,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
}
|
||||
};
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user