Template
chore: deploy initial code base
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user