chore: deploy initial code base

This commit is contained in:
Thom Lamb
2026-05-12 10:34:30 -05:00
parent cce2961782
commit a81300a571
1829 changed files with 248331 additions and 1 deletions
@@ -0,0 +1,57 @@
using Strata.ContinuousImprovement.Biz.GeneralLedger.Opportunities;
using System;
using System.Collections.Generic;
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
{
public partial class JazzEntityFrameworkFactory
{
#region Opportunities
public List<GLOpportunity> GLOpportunities =
new List<GLOpportunity>()
{
new GLOpportunity
{
OpportunityGuid = Guid.NewGuid(),
OpportunityKey = "GL - 101",
Name = "GL Name 1",
IdentifiedSavings = 1000d,
Type = "Revenue",
Level = "Overall",
InitiativeGuid = Guid.Empty,
Note = string.Empty,
IsHidden = false,
ConfigurationGuid = CurrentConfigurationGuid
},
new GLOpportunity
{
OpportunityGuid = Guid.NewGuid(),
OpportunityKey = "GL - 102",
Name = "GL Name 2",
IdentifiedSavings = 199,
Type = "Expense",
Level = "Department",
InitiativeGuid = Guid.Empty,
Note = string.Empty,
IsHidden = false,
ConfigurationGuid = CurrentConfigurationGuid
},
new GLOpportunity
{
OpportunityGuid = Guid.NewGuid(),
OpportunityKey = "GL - 103",
Name = "GL Name 3",
IdentifiedSavings = 2000d,
Type = "Margin",
Level = "Overall",
InitiativeGuid = Guid.Empty,
Note = string.Empty,
IsHidden = false,
ConfigurationGuid = CurrentConfigurationGuid
},
};
#endregion
}
}