Template
58 lines
2.0 KiB
C#
58 lines
2.0 KiB
C#
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
|
|
}
|
|
}
|