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,21 @@
using Strata.ContinuousImprovement.Biz.Network;
using System.Collections.Generic;
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
{
public partial class JazzEntityFrameworkFactory
{
public List<ClientNetworkOpportunity> ClientNetworkOpportunities =
new List<ClientNetworkOpportunity> {
new ClientNetworkOpportunity {
StrataId = 9,
IdentifiedSavings = 1000,
IdentifiedSavingsDescription = "IdentifiedSavingsDescription",
AnalyticsWorkbookId = 0,
NetworkOpportunityId = 1,
IsPublished = true
}
};
}
}